react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 556 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaStackExchange extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1297.2512 1896.0833" {...this.props}>
<g><path d="m1259 1253v66q0 85-57.5 144.5t-138.5 59.5h-57l-260 269v-269h-529q-81 0-138.5-59.5t-57.5-144.5v-66h1238z m0-326v255h-1238v-255h1238z m0-328v255h-1238v-255h1238z m0-140v67h-1238v-67q0-84 57.5-143.5t138.5-59.5h846q81 0 138.5 59.5t57.5 143.5z"/></g>
</IconBase>
);
}
}