UNPKG

phx-react

Version:

PHX REACT

11 lines (10 loc) 281 B
import React, { FC } from 'react'; type TooltipProps = { content: string | React.ReactNode; contentClassName?: string; className?: string; underLine?: boolean; children: React.ReactNode; }; declare const PHXTooltip: FC<TooltipProps>; export default PHXTooltip;