@hrobarikt/box-ui-elements
Version:
Box UI Elements
21 lines (20 loc) • 663 B
TypeScript
import * as React from 'react';
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;
}
declare class IconTrophyCupWithTooltip extends React.PureComponent<IconTrophyCupWithTooltipProps> {
static defaultProps: {
className: string;
height: number;
tooltipColor: string;
tooltipText: string;
width: number;
};
idPrefix: string;
render(): JSX.Element;
}
export default IconTrophyCupWithTooltip;