react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 666 B
JSX
import React, { Component } from 'react';
export default class FormatAnnotationPlusIcon extends Component {
static defaultProps = {
className: ''
};
constructor(props) {
super(props);
}
render() {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" baseProfile="full" viewBox="0 0 24.00 24.00" {...this.props} className={`material material-format-annotation-plus-icon ${this.props.className}`}><path d="M8.5 7h2L16 21h-2.4l-1.1-3H6.3l-1.1 3H3L8.5 7zm-1.4 9h4.8L9.5 9.7 7.1 16zM22 5v2h-3v3h-2V7h-3V5h3V2h2v3h3z"/></svg>
)
}
}