website/_components/separator.tsx
Foster Hangdaan 4571eb3e85
Replace font icons with SVG icons
The new SVG icons are from the Tabler Icons set.
2023-07-31 00:14:54 -04:00

10 lines
223 B
TypeScript

export default function ({ comp }) {
return (
<div className="separator">
<span className="outer-outline"/>
<span>{ comp.icons.Diamonds() }</span>
<span className="outer-outline"/>
</div>
);
}