Files
drive/apps/drive-web/src/components/ui/skeleton.tsx

14 lines
261 B
TypeScript
Raw Normal View History

2025-09-13 22:02:27 +01:00
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
2025-10-03 20:40:23 +00:00
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)
2025-09-13 22:02:27 +01:00
}
export { Skeleton }