react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 715 B
JSX
import React, { Component } from 'react';
export default class FileWordBoxIcon 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-file-word-box-icon ${this.props.className}`}><path d="M15.5 16.998H14l-2-7.5-2 7.5H8.5l-2.4-10h1.7l1.541 7.507L11.3 6.998h1.4l1.972 7.507L16.2 6.998h1.7m1.1-4H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-14a2 2 0 0 0-2-2z"/></svg>
)
}
}