skeleton.tsx 261 B

123456789101112131415
  1. import { cn } from "@/lib/utils"
  2. function Skeleton({
  3. className,
  4. ...props
  5. }: React.HTMLAttributes<HTMLDivElement>) {
  6. return (
  7. <div
  8. className={cn("animate-pulse rounded-md bg-muted", className)}
  9. {...props}
  10. />
  11. )
  12. }
  13. export { Skeleton }