10 lines
194 B
Plaintext
10 lines
194 B
Plaintext
// Loading spinner (pure CSS animation, no JS).
|
|
component Spinner {
|
|
props {
|
|
class = ""
|
|
}
|
|
view {
|
|
<span class="wire-spinner {class}" role="status" aria-label="Loading"></span>
|
|
}
|
|
}
|