@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.24 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function AirportSecurity(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: "M4.844 2A.843.843 0 0 0 4 2.843v18.311c0 .467.379.846.847.846h.298A.855.855 0 0 0 6 21.145V5.842c0-.465.377-.841.842-.841h10.301c.474 0 .857.383.857.855v15.302c0 .466.377.842.841.842h.305a.855.855 0 0 0 .854-.854V2.854A.854.854 0 0 0 19.146 2H4.844zM13.5 4a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm-3 0a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zm1.493 5.847a2.083 2.083 0 1 1 0-4.167 2.083 2.083 0 0 1 0 4.167zm1.667.403c.917 0 1.667.75 1.667 1.75v3.167c0 .5-.334.833-.834.833h-.666a.18.18 0 0 0-.167.167v5c0 .5-.333.833-.833.833H11.16c-.5 0-.833-.333-.833-.833v-5.084a.18.18 0 0 0-.167-.166h-.667c-.5 0-.833-.334-.833-.834v-3.166c0-.917.75-1.667 1.667-1.667h3.333z"
}));
}