import { Skeleton } from "lib/comps/ui/skeleton"; import { Loader2 } from "lucide-react"; import { FC } from "react"; export const FieldLoading: FC<{ height?: "normal" | "short" }> = (prop) => { let height = "10px"; if (prop.height === "short") height = "6px"; return (
); }; export const Spinner = ({ className }: { className?: string }) => { return (
); };