Files
tweakcn/components/loading.tsx
T
2025-04-17 14:18:28 +05:30

17 lines
538 B
TypeScript

import { cn } from "@/lib/utils";
interface LoadingProps {
className?: string;
}
export function Loading({ className }: LoadingProps) {
return (
<div className={cn("flex items-center justify-center min-h-[400px]", className)}>
<div className="relative">
<div className="w-12 h-12 rounded-full absolute border-4 border-solid border-gray-200"></div>
<div className="w-12 h-12 rounded-full animate-spin absolute border-4 border-solid border-primary border-t-transparent"></div>
</div>
</div>
);
}