react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 725 B
JSX
import React, { Component } from 'react';
export default class FileExcelIcon 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-excel-icon ${this.props.className}`}><path d="M6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2zm7 1.5V9h5.5L13 3.5zm4 7.5h-4v2h1l-2 1.667L10 13h1v-2H7v2h1l3 2.5L8 18H7v2h4v-2h-1l2-1.667L14 18h-1v2h4v-2h-1l-3-2.5 3-2.5h1v-2z"/></svg>
)
}
}