feat: init

This commit is contained in:
2026-05-08 22:47:48 +03:00
commit 2bda5be2cd
85 changed files with 13927 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { cn } from "@/shared/lib/utils"
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("animate-pulse rounded-md bg-accent", className)}
{...props}
/>
)
}
export { Skeleton }