react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 823 B
JSX
import React, { Component } from 'react';
export default class FormatColorFillIcon 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-color-fill-icon ${this.props.className}`}><path d="M19 11.499s-2 2.167-2 3.5a2 2 0 0 0 4 0c0-1.333-2-3.5-2-3.5zm-13.794-1.5L10 5.207l4.793 4.792m1.768-1.061L7.62-.001 6.206 1.413l2.38 2.379-5.148 5.146a1.502 1.502 0 0 0 0 2.122l5.5 5.5c.293.293.677.439 1.061.439.384 0 .768-.146 1.061-.439l5.5-5.5a1.502 1.502 0 0 0 0-2.122z"/></svg>
)
}
}