react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 676 B
JSX
import React, { Component } from 'react';
export default class FormatListChecksIcon 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-list-checks-icon ${this.props.className}`}><path d="M3 5h6v6H3V5zm2 2v2h2V7H5zm6 0h10v2H11V7zm0 8h10v2H11v-2zm-6 5.002l-3.5-3.5 1.414-1.414L5 17.174l4.586-4.586L11 14.002l-6 6z"/></svg>
)
}
}