UNPKG

xlibs-components

Version:

Modern React component library with Aceternity, MagicUI, and ShadCN components for building beautiful web applications

7 lines (6 loc) 261 B
import { jsx as _jsx } from "react/jsx-runtime"; import { cn } from '../../lib/utils.js'; function Skeleton({ className, ...props }) { return (_jsx("div", { className: cn("animate-pulse rounded-md bg-muted", className), ...props })); } export { Skeleton };