Add shadcn components

This commit is contained in:
Rami Bitar
2026-05-03 19:04:53 -04:00
parent c9b64e78d8
commit 5d854c5d75
62 changed files with 8771 additions and 65 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("animate-pulse rounded-md bg-muted", className)}
{...props}
/>
)
}
export { Skeleton }