@arolariu/components
Version:
🎨 60+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
14 lines (13 loc) • 410 B
JavaScript
"use client";
import { jsx } from "react/jsx-runtime";
import "react";
import { cn } from "../../lib/utils.js";
function Skeleton({ className, ...props }) {
return /*#__PURE__*/ jsx("div", {
"data-slot": "skeleton",
className: cn("bg-neutral-100 animate-pulse rounded-md dark:bg-neutral-800", className),
...props
});
}
export { Skeleton };
//# sourceMappingURL=skeleton.js.map