@leveluptuts/fresh
Version:
They're dope, they're fresh.
24 lines (23 loc) • 743 B
TypeScript
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;