Initial commit

This commit is contained in:
Z User
2026-03-28 06:07:39 +00:00
commit 9566f44652
134 changed files with 27218 additions and 0 deletions

13
src/components/ui/skeleton.tsx Executable file
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 }