shoelace/docs/components/spinner.md

87 wiersze
1.7 KiB
Markdown
Czysty Zwykły widok Historia

2020-07-15 21:30:37 +00:00
# Spinner
[component-header:sl-spinner]
Spinners are used to show the progress of an indeterminate operation.
```html preview
<sl-spinner></sl-spinner>
```
2021-11-04 22:12:47 +00:00
```jsx react
import { SlSpinner } from '@shoelace-style/shoelace/dist/react';
const App = () => (
<SlSpinner />
);
```
2020-07-15 21:30:37 +00:00
## Examples
### Size
2021-09-17 21:48:44 +00:00
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.
2020-07-15 21:30:37 +00:00
```html preview
<sl-spinner></sl-spinner>
<sl-spinner style="font-size: 2rem;"></sl-spinner>
<sl-spinner style="font-size: 3rem;"></sl-spinner>
```
2021-11-04 22:12:47 +00:00
```jsx react
import { SlSpinner } from '@shoelace-style/shoelace/dist/react';
const App = () => (
<>
<SlSpinner />
<SlSpinner style={{ fontSize: '2rem' }} />
<SlSpinner style={{ fontSize: '3rem' }} />
</>
);
```
2021-09-17 21:48:44 +00:00
### Track Width
2020-07-15 21:30:37 +00:00
2021-09-17 21:48:44 +00:00
The width of the spinner's track can be changed by setting the `--track-width` custom property.
2020-07-15 21:30:37 +00:00
```html preview
2021-09-17 21:48:44 +00:00
<sl-spinner style="font-size: 3rem; --track-width: 6px;"></sl-spinner>
2020-07-15 21:30:37 +00:00
```
2021-11-04 22:12:47 +00:00
```jsx react
import { SlSpinner } from '@shoelace-style/shoelace/dist/react';
const App = () => (
<SlSpinner
style={{
fontSize: '3rem',
'--track-width': '6px'
}}
/>
);
```
2020-07-15 21:30:37 +00:00
### Color
2020-12-22 14:40:11 +00:00
The spinner's colors can be changed by setting the `--indicator-color` and `--track-color` custom properties.
2020-07-15 21:30:37 +00:00
```html preview
2021-09-17 21:48:44 +00:00
<sl-spinner style="font-size: 3rem; --indicator-color: deeppink; --track-color: pink;"></sl-spinner>
2020-07-15 21:30:37 +00:00
```
2021-11-04 22:12:47 +00:00
```jsx react
import { SlSpinner } from '@shoelace-style/shoelace/dist/react';
const App = () => (
<SlSpinner
style={{
fontSize: '3rem',
'--indicator-color': 'deeppink',
'--track-color': 'pink'
}}
/>
);
```
2020-07-15 21:30:37 +00:00
[component-metadata:sl-spinner]