Extracted stack files

This commit is contained in:
ka-official
2026-03-17 20:23:49 +00:00
parent 01443deb1c
commit 8c9d17d465
74 changed files with 14798 additions and 1 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 }