@wordpress/components
Version:
UI components for WordPress.
20 lines (11 loc) • 405 B
Markdown
Spinners notify users that their action is being processed.

The spinner component should:
- Signal to users that the processing of their request is underway and will soon complete.
```jsx
import { Spinner } from '@wordpress/components';
const MySpinner = () => <Spinner />;
```