* 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
31 lines
530 B
Plaintext
31 lines
530 B
Plaintext
---
|
|
name: TooltipClipboard
|
|
menu: Data Display
|
|
route: components/tooltipClipboard
|
|
---
|
|
|
|
import { Playground, Props } from 'docz';
|
|
import { TooltipClipboard } from '../';
|
|
|
|
# Tooltip Clipboard
|
|
|
|
Tooltips display informative content when users hover over, focus on, or tap an
|
|
element.
|
|
|
|
## Import
|
|
|
|
```javascript
|
|
import { TooltipClipboard } from '@ohif/ui';
|
|
```
|
|
|
|
<Playground>
|
|
<div className="p-4">
|
|
<TooltipClipboard>Text to be copied</TooltipClipboard>
|
|
</div>
|
|
); }}
|
|
</Playground>
|
|
|
|
## Properties
|
|
|
|
<Props of={TooltipClipboard} />
|