Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 1.16 KB

File metadata and controls

22 lines (16 loc) · 1.16 KB

Spinner

The Spinner component is responsible for indicating loading states.

Props

Name Type Default Description
size ? number 32 The size of the spinner width & height in px.
spinnerColor ? ColorKey 'primary.400' The color of the spinner.
textContent ? string / number - The text displayed below the spinner.
textContentColor ? ColorKey 'grey.100' The color of the text.
testID ? string - The unique E2E test handler.
...HTMLDivElement? Partial(HTMLDivElement) - Props that will be passed to the root of the div element.

Examples

React

return <Spinner textContent="Loading" />;