Files
2026-04-05 00:43:23 +05:30

19 lines
473 B
TypeScript

'use client';
import { useEffect } from 'react';
export default function MaterialSymbols() {
useEffect(() => {
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = 'https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&display=swap';
document.head.appendChild(link);
return () => {
document.head.removeChild(link);
};
}, []);
return null;
}