UNPKG

@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.17 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function FlightReturn(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.927 12.11l.086.073 2.803 2.921c.22.22.243.537.066.732l-.066.06-2.804 2.922a.56.56 0 0 1-.429.182c-.331 0-.563-.197-.606-.503l-.007-.106V16.4l-8.063.001a.905.905 0 0 1-.9-.787L8 15.5c0-.459.346-.838.793-.893l.114-.007 8.063-.001v-1.99c0-.122.06-.305.184-.426a.594.594 0 0 1 .773-.072zM6.847 5.184a.655.655 0 0 1 .183.426v1.99l8.063.001.114.007A.903.903 0 0 1 16 8.5l-.007.113a.905.905 0 0 1-.9.787L7.03 9.399v1.992l-.007.106c-.043.306-.275.503-.606.503a.56.56 0 0 1-.43-.182L3.184 8.896l-.066-.06c-.177-.195-.155-.513.066-.732l2.804-2.921.086-.073a.594.594 0 0 1 .772.073z" })); }