import { cn } from "@/lib/utils"; interface LoadingSpinnerProps { size?: "sm" | "md" | "lg"; text?: string; className?: string; } export default function LoadingSpinner({ size = "md", text, className }: LoadingSpinnerProps) { const sizeClasses = { sm: "h-4 w-4", md: "h-8 w-8", lg: "h-12 w-12" }; const textSizes = { sm: "text-xs", md: "text-sm", lg: "text-base" }; return (
); }