Files
fintrack/components/ui/skeleton.tsx
Julien Froidefond e9e44916fd chore: init from v0
2025-11-27 09:51:18 +01:00

14 lines
276 B
TypeScript

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 }