mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
8 lines
239 B
TypeScript
8 lines
239 B
TypeScript
import { cn } from '@/lib/core/utils/cn'
|
|
|
|
function Skeleton({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) {
|
|
return <div className={cn('animate-pulse rounded-md bg-muted', className)} {...props} />
|
|
}
|
|
|
|
export { Skeleton }
|