Files
Desktop/ts/components/conversation/media-gallery/EmptyState.md
2018-05-08 16:52:01 -04:00

30 lines
415 B
Markdown

### Media Empty State
```js
<div
style={{
display: 'flex',
position: 'relative',
width: '100%',
height: 300,
}}
>
<EmptyState label="You have no attachments with media" />
</div>
```
### Documents Empty State
```js
<div
style={{
display: 'flex',
position: 'relative',
width: '100%',
height: 500,
}}
>
<EmptyState label="You have no documents with media" />
</div>
```