mirror of
https://github.com/zadam/trilium.git
synced 2025-12-19 05:44:24 +01:00
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
interface IconProps {
|
|
svg: string;
|
|
}
|
|
|
|
export default function Icon({ svg }: IconProps) {
|
|
return (
|
|
<span className="bx" dangerouslySetInnerHTML={{ __html: svg }} />
|
|
)
|
|
}
|