UNPKG

@kiwicom/orbit-components

Version:

<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"

21 lines (19 loc) 828 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; import type { Props } from "./BoardingGate.js.flow"; export default function BoardingGate(props: Props) { const { color, size, customColor, className, dataTest } = props; return ( <OrbitIcon viewBox="0 0 24 24" size={size} color={color} customColor={customColor} className={className} dataTest={dataTest} > <path d="M19 7h1a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1V5H2V3h20v2h-3v2zm-2 0V5H7v2h10zm-2 6.414V17h2v-3.586l1.293 1.293 1.414-1.414L16 9.586l-3.707 3.707 1.414 1.414L15 13.414zm-4.75-1.664V10h-3.5C5.785 10 5 10.786 5 11.75v3.5c0 .965.785 1.75 1.75 1.75H8.5c.965 0 1.75-.785 1.75-1.75v-2.625H7.625v1.75H8.5v.875H6.75v-3.5h3.5z" /> </OrbitIcon> ); }