type LoadingIndicatorProps = { label?: string; size?: "sm" | "md"; }; export default function LoadingIndicator({ label = "Loading", size = "sm" }: LoadingIndicatorProps) { return ( ); }