* Use path instead of alias * Add missing pacakges * Use path in viewers * Use path in contextProviders * Add base to config * Add conditionals for window * Copy config to avoid breaking build * Update and lock versions * Update lock file * Remove scaling config * Fix broken versions of react date * Fix broken dev
38 lines
694 B
Plaintext
38 lines
694 B
Plaintext
---
|
|
name: ThumbnailNoImage
|
|
menu: General
|
|
route: components/ThumbnailNoImage
|
|
---
|
|
|
|
import { Playground, Props } from 'docz';
|
|
import { ThumbnailNoImage } from '../';
|
|
|
|
# ThumbnailNoImage
|
|
|
|
Used to expose
|
|
|
|
## Import
|
|
|
|
```javascript
|
|
import { Thumbnail } from '@ohif/ui';
|
|
```
|
|
|
|
## Basic usage
|
|
|
|
<Playground>
|
|
<div className="flex flex-1 items-center justify-center p-4">
|
|
<div className="w-64">
|
|
<ThumbnailNoImage
|
|
modality={'SR'}
|
|
seriesDate="13-Mar-1999"
|
|
description="Multiple line image series description lorem sit"
|
|
onClick={() => alert('ThumbnailNoImage was clicked!')}
|
|
/>
|
|
</div>
|
|
</div>
|
|
</Playground>
|
|
|
|
## Properties
|
|
|
|
<Props of={ThumbnailNoImage} />
|