import { cn } from '../lib/utils'; function Skeleton({ className, children, isLoading = true, ...props }: React.HTMLAttributes & { isLoading?: boolean }) { return (
{children ?? }
{isLoading && (
)}
); } export { Skeleton };