react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 711 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaInfoCircle extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1536 1896.0833" {...this.props}>
<g><path d="m1024 1376v-160q0-14-9-23t-23-9h-96v-512q0-14-9-23t-23-9h-320q-14 0-23 9t-9 23v160q0 14 9 23t23 9h96v320h-96q-14 0-23 9t-9 23v160q0 14 9 23t23 9h448q14 0 23-9t9-23z m-128-896v-160q0-14-9-23t-23-9h-192q-14 0-23 9t-9 23v160q0 14 9 23t23 9h192q14 0 23-9t9-23z m640 416q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z"/></g>
</IconBase>
);
}
}