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 1.35 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function SeatWindow(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: "M19 10.66a1 1 0 0 1 1 1v4c0 .276-.112.526-.293.708a.996.996 0 0 1-.707.292h-2.434a.566.566 0 0 0-.566.567v1.153c0 .155.125.28.28.28h.885a.835.835 0 0 1 0 1.671h-5.33a.835.835 0 0 1 0-1.671h.884a.28.28 0 0 0 .281-.28v-1.153a.567.567 0 0 0-.567-.567h-1.867A1.566 1.566 0 0 1 9 15.094V11.66a1 1 0 1 1 2 0v2.434c0 .313.253.566.566.566h5.867a.566.566 0 0 0 .567-.566V11.66a1 1 0 0 1 1-1zm-2.987-7A2.988 2.988 0 0 1 19 6.647v3.021h-.014a1.979 1.979 0 0 0-1.979 1.978v1.449a.573.573 0 0 1-.573.573h-3.869a.574.574 0 0 1-.573-.573v-1.449a1.979 1.979 0 0 0-1.979-1.978H10V6.647a2.987 2.987 0 0 1 2.986-2.987h3.027zM4.15 6.53a.55.55 0 0 0-.55.55v1.45c0 .644.499 1.165 1.114 1.165.615 0 1.114-.521 1.114-1.165V7.08a.55.55 0 0 0-.55-.55H4.15zm.56 4.84C3.216 11.37 2 10.099 2 8.535v-2C2 4.972 3.216 3.7 4.71 3.7s2.71 1.272 2.71 2.835v2c0 1.564-1.216 2.835-2.71 2.835z" })); }