react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 586 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaInfo extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1011.9142 1896.0833" {...this.props}>
<g><path d="m640 1344v128q0 26-19 45t-45 19h-512q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h64v-384h-64q-26 0-45-19t-19-45v-128q0-26 19-45t45-19h384q26 0 45 19t19 45v576h64q26 0 45 19t19 45z m-128-1152v192q0 26-19 45t-45 19h-256q-26 0-45-19t-19-45v-192q0-26 19-45t45-19h256q26 0 45 19t19 45z"/></g>
</IconBase>
);
}
}