@visa/nova-react
Version:
Visa Product Design System Nova React library
19 lines (18 loc) • 758 B
TypeScript
import { ElementType, ForwardedRef } from 'react';
export type TooltipProperties = {
/** CSS Class Name */
className?: string;
/** Tag of Component */
tag?: ElementType;
};
/**
* Short message communicating the function or context of a control or object.
* @docs {@link https://design.visa.com/react/components/tooltip | See Docs}
* @vgar TODO
* @wcag TODO
*/
declare const _default: <HTMLElementType = HTMLSpanElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & TooltipProperties) => import("react").ReactElement;
export default _default;