Update shadcn components

This commit is contained in:
sabaimran
2024-12-19 14:33:36 -08:00
parent a4aeb9fdf3
commit 7eb15bf0a9
10 changed files with 875 additions and 24 deletions

View File

@@ -0,0 +1,7 @@
import { cn } from "@/lib/utils";
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
return <div className={cn("animate-pulse rounded-md bg-muted", className)} {...props} />;
}
export { Skeleton };