@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.03 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function OnlineCheckin(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-.417zm-5-10.416a3.75 3.75 0 1 1 0 7.5 3.75 3.75 0 0 1 0-7.5zm1.985 3.156h.002a.625.625 0 1 0-1-.75l-1.47 1.96-.667-.667a.625.625 0 0 0-.883.884l.833.833a1.056 1.056 0 0 0 1.57-.109l1.615-2.152z"
}));
}