10 lines
270 B
TypeScript
10 lines
270 B
TypeScript
import type { HTMLAttributes } from 'react'
|
|
|
|
import { cn } from '@/lib/utils'
|
|
|
|
function Skeleton({ className, ...props }: HTMLAttributes<HTMLDivElement>) {
|
|
return <div className={cn('animate-pulse rounded-md bg-muted', className)} {...props} />
|
|
}
|
|
|
|
export { Skeleton }
|