@arolariu/components
Version:
🎨 70+ 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! ⚡
13 lines (12 loc) • 386 B
JavaScript
"use client";
import { jsx } from "react/jsx-runtime";
import { cn } from "../../lib/utilities.js";
import "react";
function Skeleton({ className, ...props }) {
return /*#__PURE__*/ jsx("div", {
className: cn("animate-pulse rounded-md bg-neutral-900/10 dark:bg-neutral-50/10", className),
...props
});
}
export { Skeleton };
//# sourceMappingURL=skeleton.js.map