Finalising content

This commit is contained in:
Markus Thielker 2024-12-22 02:57:08 +01:00
parent 8ce56cf7cf
commit e2ba6e0029
No known key found for this signature in database
11 changed files with 667 additions and 162 deletions

View file

@ -0,0 +1,15 @@
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 }