shellphone.app/app/features/core/components/spinner.tsx
2022-05-14 12:22:06 +02:00

16 lines
323 B
TypeScript

import type { LinksFunction } from "@remix-run/node";
import styles from "./spinner.css";
export const links: LinksFunction = () => [
{ rel: "stylesheet", href: styles },
];
export default function Spinner() {
return (
<div className="h-full flex">
<div className="ring m-auto text-primary-400" />
</div>
);
}