react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 689 B
JSX
import React, { Component } from 'react';
export default class FormatListNumbersIcon 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-numbers-icon ${this.props.className}`}><path d="M7 12.998h14v-2H7m0 8h14v-2H7m0-10h14v-2H7m-5 6h1.8l-1.8 2.1v.9h3v-1H3.2l1.8-2.1v-.9H2m1-2h1v-4H2v1h1m-1 12h2v.5H3v1h1v.5H2v1h3v-4H2v1z"/></svg>
)
}
}