({
className,
...props
})
| 4 | var __name = (target, value) => __defProp(target, "name", { value, configurable: true }); |
| 5 | import { cn } from "@/lib/utils"; |
| 6 | function Skeleton({ |
| 7 | className, |
| 8 | ...props |
| 9 | }) { |
| 10 | return /* @__PURE__ */ React.createElement( |
| 11 | "div", |
| 12 | { |
| 13 | className: cn("animate-pulse rounded-md bg-primary/10", className), |
| 14 | ...props |
| 15 | } |
| 16 | ); |
| 17 | } |
| 18 | __name(Skeleton, "Skeleton"); |
| 19 | export { Skeleton }; |