react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 732 B
JSX
import React, { Component } from 'react';
export default class FormatLineWeightIcon 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-line-weight-icon ${this.props.className}`}><g><defs><path d="M0 0h24v24H0z"/></defs><clipPath><use overflow="visible" /></clipPath><g clip-path="url(#b)"><path d="M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z"/></g></g></svg>
)
}
}