@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.06 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Accommodation(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: "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"
}));
}