Extracted stack files

This commit is contained in:
keshavanandmusi
2025-12-14 23:48:59 +00:00
parent 6c71fa7f0e
commit 7982b4d5ad
75 changed files with 14410 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { cn } from "@/lib/utils"
function Skeleton({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>) {
return (
<div
className={cn("animate-pulse rounded-md bg-muted", className)}
{...props}
/>
)
}
export { Skeleton }