import { LoaderCircle } from "lucide-react"; import type { ComponentProps } from "react"; import { useTranslation } from "react-i18next"; import { cn } from "@/shared/lib/cn"; function Spinner({ className, ...props }: ComponentProps) { const { t } = useTranslation(); return ( ); } export { Spinner };