react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 695 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaNewspaperO extends React.Component {
render() {
return (
<IconBase viewBox="0 0 2048 1896.0833" {...this.props}>
<g><path d="m1024 512h-384v384h384v-384z m128 640v128h-640v-128h640z m0-768v640h-640v-640h640z m640 768v128h-512v-128h512z m0-256v128h-512v-128h512z m0-256v128h-512v-128h512z m0-256v128h-512v-128h512z m-1536 960v-960h-128v960q0 26 19 45t45 19 45-19 19-45z m1664 0v-1088h-1536v1088q0 33-11 64h1483q26 0 45-19t19-45z m128-1216v1216q0 80-56 136t-136 56h-1664q-80 0-136-56t-56-136v-1088h256v-128h1792z"/></g>
</IconBase>
);
}
}