react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 771 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class GoOcticonLaw extends React.Component {
render() {
return (
<IconBase viewBox="0 0 896 1024.032" {...this.props}>
<g><path d="m448 256.001c-53 0-96-43-96-96s43-96 96-96 96 43 96 96-43 96-96 96z m448 384c0 71-57 128-128 128h-64c-71 0-128-57-128-128l128-256h-64c-35 0-64-29-64-64h-64v512c27 0 64 29 64 64h64c27 0 64 29 64 64h-512c0-35 37-64 64-64h64c0-35 37-64 64-64h2l-2-512h-64c0 35-29 64-64 64h-64l128 256c0 71-57 128-128 128h-64c-71 0-128-57-128-128l128-256h-64v-64h192c0-35 29-64 64-64h256c35 0 64 29 64 64h192v64h-64l128 256z m-736-192l-96 192h192l-96-192z m672 192l-96-192-96 192h192z"/></g>
</IconBase>
);
}
}