import { LoadingIcon } from '../icons'; import { cn } from '../utils/cn'; interface LoadingStateProps { message?: string; className?: string; iconSize?: number; } export function LoadingState({ message = 'Loading...', className = '', iconSize = 24, }: LoadingStateProps) { return (