react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 762 B
JSX
import React, { Component } from 'react';
export default class FileImportIcon 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-import-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.504M10.05 11.22l2.832 2.832L15 11.928v7.07H7.93l2.119-2.119-2.828-2.827"/></svg>
)
}
}