Tooltip
Example
import { Button, Tooltip } from '@i4o/catalystui'
export default () => (
<Tooltip content='Tooltip Content'>
<Button>Hover me</Button>
</Tooltip>
)
Props
Name | Type | Default | Description |
---|---|---|---|
content | ReactNode | string | - | The content of the tooltip |
side | top | right | bottom | left | 'top' | The placement of the tooltip |
align | start | center | end | 'center' | Alignment of the content inside the tooltip |
children | ReactNode | - | The element to be wrapped by the tooltip |