UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

28 lines (27 loc) 701 B
export interface TooltipProps { /** Text to display to prompt user */ openText: string; /** Text to display as close message. */ closeText: string; /** Tooltip Message */ message: string; /** Unique ID of tooltip */ controlId: string; /** Position of tip ('' or above) */ location?: string; /** description on link for screen readers */ info: string; /** SVG icon */ openIcon?: boolean; /** Title of opened window */ title?: string; /** Heading level of title. Default h2 */ level?: number; } declare const Tooltip: { (tooltip: TooltipProps): any; defaultValue: { level: number; }; }; export default Tooltip;