merge main

This commit is contained in:
bracesproul
2025-03-05 10:29:51 -08:00
6 changed files with 2535 additions and 4032 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("bg-primary/10 animate-pulse rounded-md", className)}
{...props}
/>
);
}
export { Skeleton };