react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 682 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class GoOcticonScreenNormal extends React.Component {
render() {
return (
<IconBase viewBox="0 0 896 1024.032" {...this.props}>
<g><path d="m128 256.001h-128v-64h128v-127.99999999999997h64v128c0 35-29 64-64 64z m0 512h-128v64h128v128h64v-128c0-35-29-64-64-64z m576-128c0 35-29 64-64 64h-384c-35 0-64-29-64-64v-256c0-35 29-64 64-64h384c35 0 64 29 64 64v256z m-128-192h-256v128h256v-128z m128 384v128h64v-128h128v-64h-128c-35 0-64 29-64 64z m64-640v-127.99999999999997h-64v128c0 35 29 64 64 64h128v-64h-128z"/></g>
</IconBase>
);
}
}