@commercetools-uikit/loading-spinner
v20.3.1
Published
A spinner animation to indicate loading state (e.g pending requests) for the user.
Readme
LoadingSpinner
Description
A spinner animation to indicate loading state (e.g pending requests) for the user.
Installation
yarn add @commercetools-uikit/loading-spinnernpm --save install @commercetools-uikit/loading-spinnerAdditionally install the peer dependencies (if not present)
yarn add reactnpm --save install reactUsage
import LoadingSpinner from '@commercetools-uikit/loading-spinner';
const Example = () => <LoadingSpinner size="s">Loading</LoadingSpinner>;
export default Example;Properties
| Props | Type | Required | Default | Description |
| ------------------ | -------------------------------------------- | :------: | ------- | ---------------------------------------------------------------------------------------------------------- |
| maxDelayDuration | number | | 1000 | Set the amount of time to delay the loading spinner before it renders.
The default value of is 1000ms. |
| scale | unionPossible values:'s' , 'l' | | 'l' | Set the size of the loading spinner. |
| children | ReactNode | | | The content rendered inside the LoadingSpinner. |
