skeleton.tsx 274 B

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