Popovers are small overlays that open on demand. They let users access additional content and actions without cluttering the page.
npm install @igloo-ui/popoverPopovers are small overlays that open on demand. They let users access additional content and actions without cluttering the page.
To install @igloo-ui/popover in your project, you will need to run the following command using npm:
``bash`
npm install @igloo-ui/popover
If you prefer Yarn, use the following command instead:
`bash`
yarn add @igloo-ui/popover
Then to use the component in your code just import it!
`jsx
import Popover from '@igloo-ui/popover';
import Hyperlink from '@igloo-ui/hyperlink';
content="Popover copy"
action={
Tell me more
}
>
Trigger content
;
``