signal-desktop/ts/components/conversation/media-gallery/EmptyState.md

30 lines
415 B
Markdown
Raw Normal View History

2018-05-08 20:11:48 +00:00
### Media Empty State
2018-04-26 21:52:43 +00:00
```js
2018-05-08 20:11:48 +00:00
<div
style={{
display: 'flex',
position: 'relative',
width: '100%',
height: 300,
}}
>
<EmptyState label="You have no attachments with media" />
</div>
```
2018-05-08 20:11:48 +00:00
### Documents Empty State
```js
2018-05-08 20:11:48 +00:00
<div
style={{
display: 'flex',
position: 'relative',
width: '100%',
height: 500,
}}
>
<EmptyState label="You have no documents with media" />
2018-04-26 21:52:43 +00:00
</div>
```