ShadCN setup

This commit is contained in:
Julien Valverdé
2024-07-19 23:38:15 +02:00
parent ad9951947a
commit 1170083e49
9 changed files with 250 additions and 53 deletions

View File

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