website/_components/separator.tsx
Foster Hangdaan 507523aaab
Use icons from static file server
The TSX icon components have been deleted since they will no longer be used.
2023-08-04 18:16:39 -04:00

16 lines
393 B
TypeScript

export default function () {
return (
<div className="separator">
<span className="outer-outline"/>
<span>
<img
src="https://static.fosterhangdaan.com/icons/tabler-icons/latest/svg/diamonds.svg"
className="icon"
style={{ filter: "var(--filter-black)" }}
/>
</span>
<span className="outer-outline"/>
</div>
);
}