// @flow import * as React from 'react'; import uniqueId from 'lodash/uniqueId'; import AccessibleSVG from '../accessible-svg'; const ICON_CLASS = 'icon-annotation-highlight-comment'; 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, width?: number, }; class IconHighlightCommentAnnotation extends React.Component { static defaultProps = { className: '', height: 20, width: 20, }; idPrefix = `${uniqueId(ICON_CLASS)}-`; render() { const { className, height, title, width } = this.props; return ( ); } } export default IconHighlightCommentAnnotation;