UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

14 lines (13 loc) 593 B
import React from 'react'; import './Popover.style.scss'; import type { Props } from './Popover.types'; /** * The Popover component allows adding a Popover to whatever provided * `triggerComponent`. It will show the Popover after a specific event, which is * defined by the provided `trigger` prop. * * Popover uses @tippyjs/react under the hood - possible attributes for future modification * can be found here: https://atomiks.github.io/tippyjs/v6/all-props/ */ declare const Popover: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>; export default Popover;