@kiwicom/orbit-components
Version:
Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.
31 lines (25 loc) • 1.75 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = FlightMulticity;
var React = _interopRequireWildcard(require("react"));
var _Icon = _interopRequireDefault(require("../Icon"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
/* eslint-disable */
function FlightMulticity(props) {
return React.createElement(_Icon.default, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M17.95 8.61l.085.073 2.782 2.921c.219.22.24.537.065.732l-.066.06-2.781 2.922a.554.554 0 0 1-.426.182c-.329 0-.56-.197-.602-.503L17 14.891V12.9h-3a.9.9 0 0 1-.893-.787L13.1 12a.9.9 0 0 1 .9-.9l3-.001v-1.99c0-.122.06-.305.183-.426a.585.585 0 0 1 .766-.072zm-10.1 0l.085.073 2.782 2.921c.219.22.24.537.065.732l-.066.06-2.781 2.922a.554.554 0 0 1-.426.182c-.329 0-.56-.197-.602-.503l-.007-.106V12.9l-3 .001a.9.9 0 0 1-.893-.787L3 12a.9.9 0 0 1 .787-.893L3.9 11.1l3-.001v-1.99c0-.122.06-.305.183-.426a.585.585 0 0 1 .766-.072z"
}));
}