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.72 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function BoardingGate(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: "M19.184 13.271a.738.738 0 0 1 0 1.045l-.369.369a.74.74 0 0 1-1.045 0l-.77-.77v2.846a.74.74 0 0 1-.74.739h-.52a.74.74 0 0 1-.74-.739v-2.846l-.77.77a.74.74 0 0 1-1.046 0l-.369-.369a.738.738 0 0 1 0-1.045l2.662-2.662a.74.74 0 0 1 1.045 0l2.662 2.662zm-7.882 3.725c0 .375-.374.645-.75.645-.75 0-.687-.749-.687-.749-.313.438-1 .874-2 .874-2 0-3.562-1.436-3.562-3.686s1.687-3.687 3.686-3.687c1.563 0 2.438.688 2.938 1.437.25.375.063.812-.374 1l-.189.062c-.312.125-.625 0-.812-.25-.25-.375-.75-.75-1.562-.75-.937 0-2.062.625-2.062 2.25 0 1.5 1 2.25 2.125 2.25 1 0 1.5-.562 1.686-.937.063-.063.063-.188-.125-.188h-1.25a.693.693 0 0 1-.687-.687c0-.375.312-.688.687-.688h2.25c.375 0 .688.313.688.688v2.416zM7 5.969a.497.497 0 0 1 .494-.469h8.767a.74.74 0 0 1 .739.74v.521a.74.74 0 0 1-.74.739H7.74A.74.74 0 0 1 7 6.761v-.792zM19.74 5.5h1.52a.74.74 0 0 0 .74-.739V4.24a.74.74 0 0 0-.74-.74H2.74a.74.74 0 0 0-.74.74v.521a.74.74 0 0 0 .74.739h1.52a.74.74 0 0 1 .74.74V7c0 .277-.224.5-.5.5A2.5 2.5 0 0 0 2 10v7.761A2.74 2.74 0 0 0 4.74 20.5h14.52A2.739 2.739 0 0 0 22 17.761V10a2.5 2.5 0 0 0-2.5-2.5.5.5 0 0 1-.5-.5v-.76a.74.74 0 0 1 .74-.74z" })); }