docs: upgrade to tailwind v4, react 19, fuma docs 15 (#1735)

This commit is contained in:
Bereket Engida
2025-03-08 19:33:31 +03:00
committed by GitHub
parent 3ae3c830a0
commit b5f638ca45
93 changed files with 14887 additions and 20735 deletions

View File

@@ -1,12 +1,10 @@
import { cn } from "@/lib/utils";
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
className={cn("animate-pulse rounded-md bg-primary/10", className)}
data-slot="skeleton"
className={cn("bg-primary/10 animate-pulse rounded-md", className)}
{...props}
/>
);