@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.
18 lines • 1.34 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function CalendarRange(props) {
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: props.size,
color: props.color,
customColor: props.customColor,
className: props.className,
dataTest: props.dataTest,
ariaHidden: props.ariaHidden,
reverseOnRtl: props.reverseOnRtl,
ariaLabel: props.ariaLabel
}, React.createElement("path", {
d: "M8.25 10.75c.5 0 .833.4.833 1s-.333 1-.833 1h-.833c-.5 0-.834-.4-.834-1s.334-1 .834-1h.833zm4.167 0c.5 0 .833.4.833 1s-.333 1-.833 1h-.834c-.5 0-.833-.4-.833-1s.333-1 .833-1h.834zm4.166 0c.5 0 .834.4.834 1s-.334 1-.834 1h-.833c-.5 0-.833-.4-.833-1s.333-1 .833-1h.833zm3.334-6.25c.916 0 1.666.75 1.666 1.667v14.166c0 .917-.75 1.667-1.666 1.667H4.083c-.916 0-1.666-.75-1.666-1.667V6.167c0-.917.75-1.667 1.666-1.667h1.25c.25 0 .417.167.334.417v1.916c0 .417.333.667.666.667A.657.657 0 0 0 7 6.833v-4c0-.5.333-.833.833-.833s.834.333.834.833v1.5a.18.18 0 0 0 .166.167h5.25c.25 0 .417.167.334.417v1.916c0 .417.333.667.666.667a.657.657 0 0 0 .667-.667v-4c0-.5.333-.833.833-.833s.834.333.834.833v1.5a.18.18 0 0 0 .166.167h2.334zM19.5 20.333c.25 0 .417-.166.417-.416v-10c0-.25-.167-.417-.417-.417h-15c-.25 0-.417.167-.417.417v10c0 .25.167.416.417.416h15z"
}));
}