UNPKG

rsuite

Version:

A suite of react components

24 lines (16 loc) 522 B
import * as React from 'react'; import { TypeAttributes, StandardProps } from '../@types/common'; export interface TooltipProps extends StandardProps { /** Dispaly placement */ placement?: TypeAttributes.Placement; /** Value of positionLeft */ positionLeft?: number; /** Value of positionTop */ positionTop?: number; /** Wheather visible */ visible?: boolean; /** Primary content */ children?: React.ReactNode; } declare const Tooltip: React.ComponentType<TooltipProps>; export default Tooltip;