react-material-icon-svg
Version:
material icon react SVG version
18 lines (14 loc) • 703 B
JSX
import React, { Component } from 'react';
export default class BriefcaseUploadIcon 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-briefcase-upload-icon ${this.props.className}`}><path d="M20 5.998a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4c-1.107 0-2-.895-2-2l.01-11c0-1.105.883-2 1.99-2h4v-2l2-2h4l2 2v2h4zm-10-2v2h4v-2h-4zM12 9l-5 5h3v4h4v-4h3l-5-5z"/></svg>
)
}
}