UNPKG

@ucloud-fe/react-components

Version:
14 lines (13 loc) 429 B
interface TooltipProps { /** 是否显示箭头 */ arrow?: boolean; /** 主题风格 */ theme?: 'light' | 'dark'; /** 自定义样式 */ customStyle?: { /** 弹出层外层 padding */ popupWrapperPadding?: string; }; } declare const Tooltip: ({ popup: _popup, theme, popupClassName, arrow, placement, customStyle, ...rest }: TooltipProps & any) => JSX.Element; export default Tooltip;