sipracd / frontend /src /components /LoadingState.tsx
Guilherme Silberfarb Costa
Deploy current SIPRAC app snapshot
7fabf33
raw
history blame contribute delete
292 Bytes
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>
);
}