UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

13 lines (12 loc) 476 B
import React from 'react'; import { Props } from './Tooltip.types'; import './Tooltip.style.scss'; /** * Tooltip component * * Shows a non-interactable popover component with `tooltip` role, and update the aria label/description of the trigger component * * @see [WCAG - Tooltip pattern]{@link https://www.w3.org/WAI/ARIA/apg/patterns/tooltip/} */ declare const Tooltip: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>; export default Tooltip;