@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.21 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function OnlineCheckinOff(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: "M16.163 2a2.5 2.5 0 0 1 2.5 2.5v15a2.5 2.5 0 0 1-2.5 2.5H7.83a2.5 2.5 0 0 1-2.5-2.5v-15A2.5 2.5 0 0 1 7.83 2h8.333zm.834 15.833V4.917a.417.417 0 0 0-.417-.417H7.413a.417.417 0 0 0-.416.417v12.916c0 .23.186.417.416.417h9.167a.417.417 0 0 0 .417-.417zM11.997 7a4.167 4.167 0 1 1 0 8.334 4.167 4.167 0 0 1 0-8.334zm-.815 1.797a2.437 2.437 0 0 0-1.561 1.57 2.568 2.568 0 0 0-.006 1.56.21.21 0 0 0 .35.093l2.884-2.885a.21.21 0 0 0-.092-.35 2.563 2.563 0 0 0-1.575.012zm1.629 4.74a2.432 2.432 0 0 0 1.56-1.571 2.563 2.563 0 0 0 .007-1.56.21.21 0 0 0-.35-.093l-2.884 2.885a.21.21 0 0 0 .093.35 2.56 2.56 0 0 0 1.574-.011z"
}));
}