@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.
28 lines • 1.11 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function FlightMulticity(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: 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"
}));
}