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.48 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function SeatAisle(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: "M6.585 6.97a.824.824 0 0 1-.334-.07L2.5 5.26a.836.836 0 0 1-.431-1.1.836.836 0 0 1 1.1-.43l3.75 1.64a.836.836 0 0 1 .43 1.1.837.837 0 0 1-.765.5zm-3.75 12.36a.837.837 0 0 1-.765-.5.837.837 0 0 1 .43-1.1l3.75-1.64a.836.836 0 0 1 1.1.43.837.837 0 0 1-.43 1.1l-3.75 1.64a.824.824 0 0 1-.334.07zM19 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.027z" })); }