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.

18 lines 746 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function FlightDirect(props) { return React.createElement(OrbitIcon, { 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.043 8.683a.588.588 0 0 1 .852 0l2.922 2.921c.242.244.242.609 0 .792l-2.922 2.922a.554.554 0 0 1-.426.182c-.366 0-.609-.243-.609-.609V12.9L3.9 12.9a.9.9 0 0 1-.893-.787L3 12a.9.9 0 0 1 .9-.9l12.96-.001v-1.99c0-.146.039-.253.117-.353l.066-.073z" })); }