react-icons
Version:
svg react icons of popular icon packs using ES6 imports
14 lines (11 loc) • 797 B
JavaScript
var React = require('react');
var IconBase = require('../IconBase');
export default class FaCar extends React.Component {
render() {
return (
<IconBase viewBox="0 0 2048 1896.0833" {...this.props}>
<g><path d="m480 1088q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113z m36-320h1016l-89-357q-2-8-14-17.5t-21-9.5h-768q-9 0-21 9.5t-14 17.5z m1372 320q0-66-47-113t-113-47-113 47-47 113 47 113 113 47 113-47 47-113z m160-96v384q0 14-9 23t-23 9h-96v128q0 80-56 136t-136 56-136-56-56-136v-128h-1024v128q0 80-56 136t-136 56-136-56-56-136v-128h-96q-14 0-23-9t-9-23v-384q0-93 65.5-158.5t158.5-65.5h28l105-419q23-94 104-157.5t179-63.5h768q98 0 179 63.5t104 157.5l105 419h28q93 0 158.5 65.5t65.5 158.5z"/></g>
</IconBase>
);
}
}