@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.5 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function AirplaneLanding(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: "M21.167 18.33c.5 0 .833.333.833.833s-.333.834-.833.834H8.833c-.5 0-.833-.334-.833-.834s.333-.833.833-.833zM4.783 5.981c.444.064.895.261 1.09.534l.926 1.304c.109.122.14.14.289.166 7.086.953 11.152 1.587 12.197 1.9 1.568.47 1.698 1.107 1.607 1.684-.092.577-.976 1.22-2.591.957a262.39 262.39 0 0 1-3.62-.57.612.612 0 0 0-.3.019 2921.8 2921.8 0 0 1-5.053 3.345c-.39.253-.52.231-1.197.128-.678-.103-.65-.103-1.387-.22-.237-.037-.59-.121-.573-.408.016-.287.489-.621.772-.849.284-.227 2.305-1.805 3.028-2.366.143-.111.178-.183.187-.222.011-.072-.02-.146-.112-.181l-.063-.017-4.358-.667c-.372-.022-.619-.261-.71-.603l-.7-3.032a2.275 2.275 0 0 1-.059-.526c0-.222.182-.44.627-.376zm4.824-1.9c.853.1.79.152 1.247.528.457.377 3.726 3.45 3.777 3.632.05.184-.102.178-.197.175-.095-.002-2.912-.406-3.106-.445-.194-.04-.309-.233-.401-.36-.062-.084-.723-.937-1.984-2.56-.33-.451-.604-.71-.46-.909.144-.197.27-.16 1.124-.061z"
}));
}