@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 • 700 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function OnlineCheckinOff(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: "M14 17h2v3a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v3h-2V6H6v12h8v-1zm5.707-7.293L17.414 12l2.293 2.293-1.414 1.414L16 13.414l-2.293 2.293-1.414-1.414L14.586 12l-2.293-2.293 1.414-1.414L16 10.586l2.293-2.293 1.414 1.414z"
}));
}