const pulse = 'animate-pulse rounded-lg bg-white/[0.05]'; export function SkeletonLine({ className = '' }: { className?: string }) { return
; } export function SkeletonCard({ className = '' }: { className?: string }) { return
; } export function SkeletonTable({ rows = 5, cols = 4, className = '' }: { rows?: number; cols?: number; className?: string }) { return (
{Array.from({ length: rows }, (_, r) => (
{Array.from({ length: cols }, (_, c) => (
))}
))}
); }