Compare commits

..

2 Commits

Author SHA1 Message Date
Developer 315cb33e3f Merge branch 'chore/format-busy-overlay-followup' into dev 2026-06-13 11:19:22 +00:00
Developer 474843ffa6 chore: apply formatter to busy overlay files 2026-06-13 11:19:22 +00:00
3 changed files with 77 additions and 74 deletions
+7 -4
View File
@@ -11,10 +11,13 @@ export function LoadingOverlay({ visible, label }: LoadingOverlayProps) {
return (
<div className="loading-overlay" aria-live="polite">
<div className="loading-overlay-content">
<Icon name="loading" size="lg" className="icon-spin" ariaLabel={label} />
{label && (
<span className="loading-overlay-label">{label}</span>
)}
<Icon
name="loading"
size="lg"
className="icon-spin"
ariaLabel={label}
/>
{label && <span className="loading-overlay-label">{label}</span>}
</div>
</div>
);