```
<LoadingDots />
```

To change the color of the LoadingDots

```
styled GreenDots = styled(LoadingDots)`
  color: green;
`

<GreenDots />
```

The dots will take on the color assigned via the `color` property or inherit it from it's parent.
