@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.22 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function SeatExtraLegroom(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: "M9.666 6.566a2.283 2.283 0 1 1 0-4.566 2.283 2.283 0 0 1 0 4.566zM18.826 22a1.349 1.349 0 0 1-1.23-.793 98.704 98.704 0 0 0-1.8-3.778c-.363-.719-.674-.836-.86-.852h-1.435c-2.767.276-3.66-1.487-3.917-2.262l-.054-.229-.745-5.037a1.35 1.35 0 0 1 2.67-.395l.726 4.907c.086.21.273.42 1.1.325l.149-.008h1.333c.072-.004.146-.004.22 0l.076.003c.989.051 2.239.534 3.147 2.33a102.612 102.612 0 0 1 1.849 3.881A1.35 1.35 0 0 1 18.825 22zm-5.507-4.2c.548 0 .913.365.913.913s-.365.914-.913.914H9.758c-1.279 0-2.375-.822-2.649-2.1l-1.461-6.394c-.183-.456.183-1.004.64-1.095.456-.183 1.004.182 1.095.639l1.461 6.393c.092.456.457.73.914.73h3.561z"
}));
}