File size: 292 Bytes
7fabf33 | 1 2 3 4 5 6 7 8 9 | export function LoadingState({ label = "Carregando..." }: { label?: string }) {
return (
<div className="loading-state" role="status" aria-live="polite">
<span className="loading-spinner" aria-hidden="true" />
<span className="loading-text">{label}</span>
</div>
);
}
|