website/_components/separator.tsx
Foster Hangdaan b7bc906545
Switch to S3 bucket for static assets
This replaces all asset links to use the new public S3 bucket. It also
upgrades several packages:

- Simple Icons v10.2.0 to v13.9.0
- Tabler Icons v2.47.0 to v3.14.0
- HightightJS v11.9.0 to v11.10.0
- Monaspace v1.000 to v1.101
2024-09-08 10:45:36 -04:00

17 lines
429 B
TypeScript

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