This repository has been archived on 2026-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/src/js/sw/primitives/spinner.js
gobha 4f1abc6321 Changeset 0.37.2 (#214)
Co-authored-by: gobha <jasafpro@gmail.com>
Co-committed-by: gobha <jasafpro@gmail.com>
2026-03-20 23:52:55 +00:00

10 lines
265 B
JavaScript

/**
* Spinner primitive — loading indicator
* Sizes: sm (16px), md (24px), lg (40px)
*/
const { html } = window;
export function Spinner({ size = 'md' }) {
return html`<span class="sw-spinner sw-spinner--${size}" role="status" aria-label="Loading" />`;
}