UNPKG

bigblocks

Version:

Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React

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