Popover

Show a popup bubble when clicking on an element. Wrap the element you want to target in the popup bubble.

Installation

import { Popover } from 'uxp/components';

Signature

const Popover: React.FunctionComponent<IPopoverProps>

Examples

<Popover title='Details' content={'Name:' + props.name}>
     <span>Click to see name</span>
</Popover>

Properties

Name
Type
Mandatory
Default Value
Example Value

title

string | IContentFunction

Yes

-

*

content

string | IContentFunction

Yes

-

*

position

No

-

-

children

React.ReactNode

No

-

*

Last updated