skeleton.tsx 302 B

1234567891011121314
  1. import React from 'react'
  2. import { cn } from '../../utils'
  3. function Skeleton({ className, ...props }: React.ComponentProps<'div'>) {
  4. return (
  5. <div
  6. data-slot="skeleton"
  7. className={cn('bg-accent animate-pulse rounded-md', className)}
  8. {...props}
  9. />
  10. )
  11. }
  12. export { Skeleton }