interface LoadingStateProps { lines?: number; compact?: boolean; card?: boolean; className?: string; } export default function LoadingState(props: LoadingStateProps) { const lines = Math.max(1, props.lines || 4); return (