react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 813 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaObjectUngroup extends React.Component {
render() {
return (
<IconBase viewBox="0 0 2304 1896.0833" {...this.props}>
<g><path d="m2304 768h-128v640h128v384h-384v-128h-896v128h-384v-384h128v-128h-384v128h-384v-384h128v-640h-128v-384h384v128h896v-128h384v384h-128v128h384v-128h384v384z m-256-256v128h128v-128h-128z m-640-384v128h128v-128h-128z m-1280 0v128h128v-128h-128z m128 1152v-128h-128v128h128z m1280-128h-128v128h128v-128z m-1152 0h896v-128h128v-640h-128v-128h-896v128h-128v640h128v128z m512 512v-128h-128v128h128z m1280 0v-128h-128v128h128z m-128-256v-640h-128v-128h-384v384h128v384h-384v-128h-384v128h128v128h896v-128h128z"/></g>
</IconBase>
);
}
}