mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
* remove side-effects, update React docs for cherry-picking * prettier * add PR # * prettier * fix react import paths * Update docs/pages/frameworks/react.md Co-authored-by: Cory LaViska <cory@abeautifulsite.net> * add colons to imports --------- Co-authored-by: Cory LaViska <cory@abeautifulsite.net>
1.8 KiB
1.8 KiB
meta, layout
| meta | layout | ||||
|---|---|---|---|---|---|
|
component |
<sl-spinner></sl-spinner>
import SlSpinner from '@shoelace-style/shoelace/dist/react/sl-spinner';
const App = () => <SlSpinner />;
Examples
Size
Spinners are sized based on the current font size. To change their size, set the font-size property on the spinner itself or on a parent element as shown below.
<sl-spinner></sl-spinner>
<sl-spinner style="font-size: 2rem;"></sl-spinner>
<sl-spinner style="font-size: 3rem;"></sl-spinner>
{% raw %}
import SlSpinner from '@shoelace-style/shoelace/dist/react/sl-spinner';
const App = () => (
<>
<SlSpinner />
<SlSpinner style={{ fontSize: '2rem' }} />
<SlSpinner style={{ fontSize: '3rem' }} />
</>
);
{% endraw %}
Track Width
The width of the spinner's track can be changed by setting the --track-width custom property.
<sl-spinner style="font-size: 50px; --track-width: 10px;"></sl-spinner>
{% raw %}
import SlSpinner from '@shoelace-style/shoelace/dist/react/sl-spinner';
const App = () => (
<SlSpinner
style={{
fontSize: '3rem',
'--track-width': '6px'
}}
/>
);
{% endraw %}
Color
The spinner's colors can be changed by setting the --indicator-color and --track-color custom properties.
<sl-spinner style="font-size: 3rem; --indicator-color: deeppink; --track-color: pink;"></sl-spinner>
{% raw %}
import SlSpinner from '@shoelace-style/shoelace/dist/react/sl-spinner';
const App = () => (
<SlSpinner
style={{
fontSize: '3rem',
'--indicator-color': 'deeppink',
'--track-color': 'pink'
}}
/>
);
{% endraw %}