feat(shadcn): install 10 missing components

This commit is contained in:
ginnoir
2026-06-13 03:08:56 -05:00
parent 615d9c9377
commit 55b0e68b35
13 changed files with 653 additions and 0 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-md bg-muted", className)}
{...props}
/>
);
}
export { Skeleton };