Initial import: was v0 exportiert hat

This commit is contained in:
Dieter Schlüter 2026-04-24 17:12:51 +02:00
commit 0194931215
167 changed files with 16465 additions and 0 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-accent animate-pulse rounded-md', className)}
{...props}
/>
)
}
export { Skeleton }