mirror of
https://github.com/arkorty/B.Tech-Project-III.git
synced 2026-04-19 20:51:49 +00:00
19 lines
473 B
TypeScript
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;
|
|
}
|