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.29 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function AirplaneDown(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: "M12 20.578c-.894 0-1.424-.837-1.424-2.174v-3.666c0-.356-.178-.624-.445-.802L3.446 10.28C3.178 10.192 3 9.836 3 9.568v-.576c0-.624.624-1.07 1.159-.802l5.793 1.961c.268.09.624-.089.624-.445V6.714c0-.268-.178-.624-.445-.803L8.437 4.843c-.356-.178-.592-.467-.475-.677.026-.047.069-.249.315-.303.246-.055 1.228.175 2.665.425.02.003.044.007.075.01.248-.584.576-.877.983-.877.406 0 .732.292.976.875l.082-.012c1.437-.25 2.42-.48 2.665-.425.246.054.289.256.315.304.117.21-.119.498-.475.676l-1.694 1.07c-.267.178-.445.36-.445.717v2.992c0 .267.267.534.624.445l5.793-1.96c.535-.268 1.159.177 1.159.801v.576c0 .357-.178.624-.446.802l-6.685 3.655c-.267.178-.445.445-.445.802v3.577c0 1.158-.53 2.263-1.424 2.263z" })); }