@exah/react-icons
Version:
svg react icons of popular icon packs using ES6 imports
18 lines (15 loc) • 572 B
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import React from 'react';
import Icon from 'react-icon-base';
var MdFlight = function MdFlight(props) {
return React.createElement(
Icon,
_extends({ viewBox: '0 0 40 40' }, props),
React.createElement(
'g',
null,
React.createElement('path', { d: 'm35 26.6l-13.4-4.1v9.1l3.4 2.5v2.5l-5.9-1.6-5.7 1.6v-2.5l3.2-2.5v-9.1l-13.2 4.1v-3.2l13.2-8.4v-9.1c0-1.5 1.1-2.5 2.5-2.5s2.5 1.1 2.5 2.5v9.1l13.4 8.4v3.2z' })
)
);
};
export default MdFlight;