import { FC } from "react"; export const Spinner: FC<{ className?: string }> = ({ className = "" }) => { return ( ); };