UNPKG

phx-react

Version:

PHX REACT

14 lines (13 loc) 388 B
import React, { FC } from 'react'; type TooltipProps = { content: string | React.ReactNode; contentClassName?: string; className?: string; underLine?: boolean; children: React.ReactNode; isDisableHover?: boolean; placement?: 'top' | 'bottom' | 'left' | 'right'; hideDelay?: number; }; declare const PHXTooltip: FC<TooltipProps>; export default PHXTooltip;