react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 488 B
JavaScript
let React = require('react');
let IconBase = require('react-icon-base');
export default class GoScreenNormal extends React.Component {
render() {
return (
<IconBase viewBox="0 0 40 40" {...this.props}>
<g><path fill="#444" d="m7.5 7.5h-5v2.5h7.5v-7.5h-2.5v5z m-5 25h5v5h2.5v-7.5h-7.5v2.5z m30-25v-5h-2.5v7.5h7.5v-2.5h-5z m-2.5 30h2.5v-5h5v-2.5h-7.5v7.5z m-20-10h20v-15h-20v15z m5-10h10v5h-10v-5z"/></g>
</IconBase>
);
}
}