import { cn } from "@/lib/utils"; interface LoadingProps { className?: string; } export function Loading({ className }: LoadingProps) { return (
); }