This commit is contained in:
2026-03-18 17:10:16 -05:00
commit b0cd20ced5
59 changed files with 7620 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { cn } from "./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 };