UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

14 lines (13 loc) 579 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/} * @deprecated Use the equivalent from momentum.design (NPM: `@momentum-design/components/dist/react`) */ declare const Tooltip: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>; export default Tooltip;