@wordpress/components
Version:
UI components for WordPress.
22 lines (13 loc) • 507 B
Markdown
`Spinner` is a component used to notify users that their action is being processed.
```jsx
import { Spinner } from '@wordpress/components';
function Example() {
return <Spinner />;
}
```
The spinner component should:
- Signal to users that the processing of their request is underway and will soon complete.
Check out the [Storybook page](https://wordpress.github.io/gutenberg/?path=/docs/components-spinner--docs) for a visual exploration of this component.