Update nextjs-vercel

This commit is contained in:
Rami Bitar
2026-06-28 15:24:24 -04:00
parent cc75b4dac0
commit 2b93443340
65 changed files with 12702 additions and 17 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 }