UNPKG

@leveluptuts/fresh

Version:
24 lines (23 loc) 743 B
import PropTypes from 'prop-types'; interface TooltipInterface { tooltip: string; tooltipBackground: string; tooltipColor: string; tooltipIconColor: string; } declare const Tooltip: { ({ tooltip, tooltipBackground, tooltipColor, tooltipIconColor, }: TooltipInterface): JSX.Element; propTypes: { tooltip: PropTypes.Requireable<string>; tooltipBackground: PropTypes.Requireable<string>; tooltipColor: PropTypes.Requireable<string>; tooltipIconColor: PropTypes.Requireable<string>; }; defaultProps: { tooltip: string; tooltipBackground: string; tooltipColor: string; tooltipIconColor: string; }; }; export default Tooltip;