@medalsocial/meda
Version:
Shared Meda UI shell and runtime package.
7 lines (6 loc) • 344 B
JavaScript
'use client';
import { jsx as _jsx } from "react/jsx-runtime";
import { cn } from '../lib/utils.js';
export function Skeleton({ className, 'aria-hidden': ariaHidden = true, ...props }) {
return (_jsx("div", { "data-slot": "skeleton", "aria-hidden": ariaHidden, className: cn('animate-pulse rounded-md bg-muted', className), ...props }));
}