react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 629 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaFighterJet extends React.Component {
render() {
return (
<IconBase viewBox="0 0 1920 1896.0833" {...this.props}>
<g><path d="m1920 960q-1 32-288 96l-352 32-224 64h-64l-293 352h69q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-96-160-64v-32h64v-416h-160l-192 224h-96l-32-32v-192h32v-32h128v-8l-192-24v-128l192-24v-8h-128v-32h-32v-192l32-32h96l192 224h160v-416h-64v-32h64 160 96q26 0 45 4.5t19 11.5-19 11.5-45 4.5h-69l293 352h64l224 64 352 32q261 58 287 93z"/></g>
</IconBase>
);
}
}