tldraw/apps/docs/components/Icon.tsx

12 lines
307 B
TypeScript
Raw Normal View History

2023-04-25 11:01:25 +00:00
export function Icon({ icon, className }: { icon: string; className?: string }) {
return (
<span
className={`icon ${className ?? ''}`}
style={{
mask: `url(/icons/${icon}.svg) center 100% / 100% no-repeat`,
WebkitMask: `url(/icons/${icon}.svg) center 100% / 100% no-repeat`,
}}
/>
)
}