@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.
22 lines • 797 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function BoardingGate(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("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"
}));
}