@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 • 972 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Accommodation(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: "M6.167 13.252a1.667 1.667 0 1 1 0-3.334 1.667 1.667 0 0 1 0 3.334zm3.333 0a.417.417 0 0 1-.417-.417V9.787a.694.694 0 0 1 .674-.694c3.993-.115 7.437 1.075 9.151 3.004a.694.694 0 0 1-.519 1.155H9.5zM21.167 8.46a.833.833 0 0 1 .833.833v7.917a.833.833 0 1 1-1.667 0v-.833a.417.417 0 0 0-.416-.417H4.083a.417.417 0 0 0-.416.417v.833a.833.833 0 0 1-1.667 0V6.793a.833.833 0 1 1 1.667 0v7.084c0 .23.186.416.416.416h15.834a.417.417 0 0 0 .416-.416V9.293a.833.833 0 0 1 .834-.833z"
}));
}