This commit is contained in:
headlessdev
2025-04-11 14:48:12 +02:00
parent 7e85c1d785
commit e8e7225a4a
11 changed files with 1866 additions and 8 deletions

View File

@@ -0,0 +1,13 @@
import { cn } from "@/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
)
}
export { Skeleton }