1
1
mirror of https://github.com/primer/css.git synced 2024-12-12 18:58:01 +03:00
css/docs/content/components/loaders.md
simurai 6ce18838e6
Update colors in docs (#1496)
* Update padding colors

* Replace more bg colors

* Migrate more colors to v1
2021-07-13 16:43:11 +09:00

27 lines
878 B
Markdown

---
title: Loaders
path: components/loaders
status: New
source: 'https://github.com/primer/css/tree/main/src/loaders'
bundle: loaders
---
Loaders inform users that an action is still in progress and might take a while to complete.
## Animated ellipsis
Add an animated ellipsis at the end of text with `<span class="AnimatedEllipsis"></span>`.
```html live
<span>Loading</span><span class="AnimatedEllipsis"></span>
```
It can also be used in combination with other components.
```html live
<h2><span>Loading</span><span class="AnimatedEllipsis"></span></h2>
<span class="branch-name mt-2"><span>Loading</span><span class="AnimatedEllipsis"></span></span><br>
<span class="Label mt-3"><span>Loading</span><span class="AnimatedEllipsis"></span></span><br>
<button class="btn mt-3" aria-disabled="true"><span>Loading</span><span class="AnimatedEllipsis"></span></button>
```