FinSight / frontend /src /components /ui /Spinner.tsx
Sanjam19's picture
Deploy FinSight demo (single-container Docker Space)
d4f8959 verified
Raw
History Blame Contribute Delete
277 Bytes
interface Props {
text?: string;
}
export function Spinner({ text = 'Loading…' }: Props) {
return (
<div className="spinner-wrap" role="status" aria-label={text}>
<div className="spinner" />
<span className="spinner-text">{text}</span>
</div>
);
}