react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 603 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaBriefcase extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1792 1896.0833" {...this.props}>
<g><path d="m640 256h512v-128h-512v128z m1152 640v480q0 66-47 113t-113 47h-1472q-66 0-113-47t-47-113v-480h672v160q0 26 19 45t45 19h320q26 0 45-19t19-45v-160h672z m-768 0v128h-256v-128h256z m768-480v384h-1792v-384q0-66 47-113t113-47h352v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h352q66 0 113 47t47 113z"/></g>
</IconBase>
);
}
}