// @flow import * as React from 'react'; import uniqueId from 'lodash/uniqueId'; import AccessibleSVG from '../accessible-svg'; type Props = { className: string, height?: number, /** A text-only string describing the icon if it's not purely decorative for accessibility */ title?: string | React.Element, tooltipColor?: string, tooltipText?: string, width?: number, }; 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;