@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.43 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function CalendarAnytime(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: "M21.583 6.167v14.166c0 .92-.746 1.667-1.666 1.667H4.083c-.92 0-1.666-.746-1.666-1.667V6.167c0-.92.746-1.667 1.666-1.667h1.25a.417.417 0 0 1 .417.417v1.875a.625.625 0 1 0 1.25 0V2.833a.833.833 0 1 1 1.667 0v1.46a.208.208 0 0 0 .208.207h5.208a.417.417 0 0 1 .417.417v1.875a.625.625 0 1 0 1.25 0V2.833a.833.833 0 1 1 1.667 0v1.459c0 .115.093.208.208.208h2.292c.92 0 1.666.746 1.666 1.667zm-1.666 13.75v-10A.417.417 0 0 0 19.5 9.5h-15a.417.417 0 0 0-.417.417v10c0 .23.187.416.417.416h15a.417.417 0 0 0 .417-.416zM12 10.333a4.583 4.583 0 1 1 0 9.167 4.583 4.583 0 0 1 0-9.167zm1.917 5.614l-.884-.882a.21.21 0 0 1 0-.295l.884-.883A.627.627 0 0 0 13.03 13l-.884.884a.21.21 0 0 1-.295 0L10.97 13a.627.627 0 1 0-.886.887l.885.883a.21.21 0 0 1 0 .295l-.885.883a.626.626 0 0 0 .886.885l.884-.884a.21.21 0 0 1 .295 0l.883.884a.626.626 0 1 0 .886-.885z"
}));
}