mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-04 07:05:26 +01:00
30 lines
415 B
Markdown
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>
|
|
```
|