chore(style): setup shadcn components

This commit is contained in:
ghost2023
2026-05-19 16:50:40 +03:00
parent 634747640a
commit f9b96c143e
5 changed files with 521 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("animate-pulse rounded-md bg-accent", className)}
{...props}
/>
)
}
export { Skeleton }