react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 699 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaThLarge extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1664 1896.0833" {...this.props}>
<g><path d="m768 1024v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z m0-768v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z m896 768v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z m0-768v384q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-384q0-52 38-90t90-38h512q52 0 90 38t38 90z"/></g>
</IconBase>
);
}
}