react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 635 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaBan extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1536 1896.0833" {...this.props}>
<g><path d="m1312 893q0-161-87-295l-754 753q137 89 297 89 111 0 211.5-43.5t173.5-116.5 116-174.5 43-212.5z m-999 299l755-754q-135-91-300-91-148 0-273 73t-198 199-73 274q0 162 89 299z m1223-299q0 157-61 300t-163.5 246-245 164-298.5 61-298.5-61-245-164-163.5-246-61-300 61-299.5 163.5-245.5 245-164 298.5-61 298.5 61 245 164 163.5 245.5 61 299.5z"/></g>
</IconBase>
);
}
}