react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 719 B
JSX
import React, { Component } from 'react';
export default class BorderStyleIcon 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-border-style-icon ${this.props.className}`}><path d="M15 21.001h2.003V19H15M18.999 21H21V19H19M7.003 21h1.996V19H7.002m4 2.002h1.995V19h-1.996M19 17.003H21V15H19m0-2.002H21V11H19M2.997 2.998V21H5V5h16.001V2.998m-2.002 6H21V7.004H19"/></svg>
)
}
}