This commit is contained in:
tusharmagar 2025-12-11 11:12:29 +05:30 committed by Ramnique Singh
parent f21558e9e5
commit 5e31c637f0
14 changed files with 1808 additions and 0 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 }