react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 763 B
JSX
import React, { Component } from 'react';
export default class FileExportIcon 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-export-icon ${this.props.className}`}><path d="M6.001 1.998a1.993 1.993 0 0 0-1.992 2L3.999 20c0 1.104.889 1.997 1.992 1.997h12.006A2.001 2.001 0 0 0 20 20V7.997l-6.001-6m-1.002 1.499l5.504 5.503h-5.504M8.931 12.22h7.07v7.072l-2.124-2.12L11.05 20l-2.828-2.828 2.828-2.826"/></svg>
)
}
}