> For the complete documentation index, see [llms.txt](https://docs.ult.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ult.dev/components/spinner.md).

# Spinner

### Styles

* Flexbox Styles
* View Styles
* Transform Styles

### Props

| Name          | Type                                       | Description                                              |
| ------------- | ------------------------------------------ | -------------------------------------------------------- |
| **color**     | `color`                                    | <ul><li>Color of indicator</li></ul>                     |
| **deferTime** | `number`                                   | <ul><li>Number of ms to wait before displaying</li></ul> |
| **size**      | `'large' \| 'medium' \| 'small' \| 'tiny'` | <ul><li>Size of indicator</li></ul>                      |
| **testId**    | `string`                                   | <ul><li>ID for testing purposes</li></ul>                |

### Examples

```jsx
<View style={styles.root}>
  {loading &&
    <ActivityIndicator color="#ffffff" size="medium" />
  }
</View>
```
