@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.37 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function AirplaneUpOff(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: "M20.591 2.248a.825.825 0 0 1 1.167 1.167L3.415 21.752a.825.825 0 1 1-1.167-1.167l6.245-6.245-4.334 1.468C3.624 16.075 3 15.63 3 15.005v-.576c0-.267.178-.623.446-.712l6.685-3.655c.267-.178.445-.446.445-.802V5.594c0-1.337.53-2.174 1.424-2.174s1.424 1.104 1.424 2.263V9.26c0 .049.003.096.01.142l7.157-7.153zm-4.871 8.825l4.834 2.643c.268.179.446.446.446.803v.575c0 .624-.624 1.07-1.159.802l-5.793-1.96a.486.486 0 0 0-.624.445v2.992c0 .357.178.539.445.717l1.694 1.07c.356.178.592.466.475.676-.026.048-.069.25-.315.304-.246.055-1.228-.176-2.665-.425l-.082-.012c-.244.583-.57.875-.976.875-.407 0-.735-.293-.983-.878a1.316 1.316 0 0 0-.075.011c-1.437.25-2.42.48-2.665.425-.246-.054-.289-.256-.315-.304-.117-.21.119-.498.475-.676l1.694-1.07c.267-.178.445-.535.445-.802v-1.069l5.144-5.142z"
}));
}