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