@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.23 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Lounge(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: "M3.86 8.773a.207.207 0 0 1-.193-.208V8.35a3.755 3.755 0 0 1 3.75-3.75h9.166a3.755 3.755 0 0 1 3.75 3.75v.096a.333.333 0 0 1-.299.336 2.922 2.922 0 0 0-2.59 2.536.417.417 0 0 1-.417.365h-3.985a.417.417 0 0 1-.417-.416V7.1a.625.625 0 1 0-1.25 0v4.167a.417.417 0 0 1-.417.416h-3.98a.417.417 0 0 1-.417-.365 2.922 2.922 0 0 0-2.7-2.545zm16.473 1.244A1.667 1.667 0 0 1 22 11.683v3.334a2.074 2.074 0 0 1-1.216 1.883.417.417 0 0 0-.242.378v1.072a1.042 1.042 0 0 1-2.084 0v-.833a.417.417 0 0 0-.416-.417H5.958a.417.417 0 0 0-.416.417v.833a1.042 1.042 0 0 1-2.084 0v-1.072a.417.417 0 0 0-.243-.378A2.075 2.075 0 0 1 2 15.017v-3.334a1.667 1.667 0 0 1 3.333 0v.834c0 .23.187.416.417.416h12.5a.417.417 0 0 0 .417-.416v-.834c0-.92.746-1.666 1.666-1.666z"
}));
}