react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 739 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaMedkit extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1792 1896.0833" {...this.props}>
<g><path d="m1280 1120v-192q0-14-9-23t-23-9h-224v-224q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v224h-224q-14 0-23 9t-9 23v192q0 14 9 23t23 9h224v224q0 14 9 23t23 9h192q14 0 23-9t9-23v-224h224q14 0 23-9t9-23z m-640-736h512v-128h-512v128z m-384 0v1280h-32q-92 0-158-66t-66-158v-832q0-92 66-158t158-66h32z m1184 0v1280h-1088v-1280h160v-160q0-40 28-68t68-28h576q40 0 68 28t28 68v160h160z m352 224v832q0 92-66 158t-158 66h-32v-1280h32q92 0 158 66t66 158z"/></g>
</IconBase>
);
}
}