1
- ---
2
- name : InlineSpinner
3
- menu : Components
4
- route : /components/inline-spinner
5
- ---
6
-
7
- import { Playground } from ' docz' ;
1
+ import { Meta , ArgsTable , Primary , Stories } from ' @storybook/blocks' ;
8
2
import { InlineSpinner } from ' ../InlineSpinner' ;
9
- import { Colors } from ' ../../../essentials' ;
10
- import { InlineSpinnerPropsTable } from ' ./InlineSpinnerPropsTable' ;
11
- import { Combination } from ' ../../../docs/Combination' ;
12
3
import { StyledSystemLinks } from ' ../../../docs/StyledSystemLinks' ;
4
+ import * as InlineSpinnerStories from ' ./InlineSpinner.stories' ;
5
+
6
+ <Meta of = { InlineSpinnerStories } />
13
7
14
8
# InlineSpinner
15
9
10
+ <Primary />
11
+
16
12
A spinner is a visual indicator of an ongoing, user-initiated process. Place the spinner where you want to focus users’
17
13
attention when the process completes. Provide a brief description of the process, for example, “Loading…”. Inline spinners
18
14
are used for showing the progress of an operation related to a specific component (buttons, etc...) and the default size
@@ -23,18 +19,8 @@ more than 200 milliseconds. Additionally it is recommended that the verb on the
23
19
24
20
## Properties
25
21
26
- <InlineSpinnerPropsTable />
27
- <br />
28
- <StyledSystemLinks component = " InlineSpinner" supportedProps = { [' margin' ]} />
22
+ <ArgsTable of = { InlineSpinner } />
29
23
30
- ## Examples
31
-
32
- <Playground >
33
- <InlineSpinner />
34
- </Playground >
35
-
36
- ## Combinations
24
+ <StyledSystemLinks component = " InlineSpinner" supportedProps = { [' margin' ]} />
37
25
38
- <Combination size = { [" small" , " medium" ]} >
39
- { (props , i ) => <InlineSpinner key = { i } { ... props } />}
40
- </Combination >
26
+ <Stories />
0 commit comments