shellphone.app/app/features/core/components/spinner.tsx

16 lines
323 B
TypeScript
Raw Normal View History

2022-05-14 10:22:06 +00:00
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>
);
}