import * as React from 'react'; import uniqueId from 'lodash/uniqueId'; import AccessibleSVG from '../accessible-svg'; import { Icon } from '../iconTypes'; interface IconTrophyCupWithTooltipProps extends Icon { /** A string describing the color of the icon's tooltip */ tooltipColor?: string; /** A string describing the text in the icon's tooltip */ tooltipText?: string; } const ICON_CLASS = 'icon-trophy-cup-with-tooltip'; class IconTrophyCupWithTooltip extends React.PureComponent { static defaultProps = { className: '', height: 54, tooltipColor: '#27C281', tooltipText: '', width: 60, }; idPrefix = `${uniqueId(ICON_CLASS)}-`; render() { const { className, height, title, tooltipColor, tooltipText, width } = this.props; return ( {tooltipText} ); } } export default IconTrophyCupWithTooltip;