feat: add shadcn/ui

This commit is contained in:
tao.chen
2026-08-25 16:58:23 +08:00
parent 6a0b62fa6b
commit 3c79cd3a93
10 changed files with 2663 additions and 4 deletions
+13
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-2xl bg-muted", className)}
{...props}
/>
)
}
export { Skeleton }