UNPKG

@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.34 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Sightseeing(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: "M3.75 13.877h6.187a.75.75 0 0 1 0 1.5.188.188 0 0 0-.187.188v3.93c0 .62-.504 1.124-1.125 1.124H5.062a1.125 1.125 0 0 1-1.125-1.125v-3.93a.187.187 0 0 0-.187-.187.75.75 0 0 1 0-1.5zm15.938-7.882H4.312a.375.375 0 0 1-.375-.375V4.495c0-.621.503-1.125 1.125-1.125h13.876c.62 0 1.125.504 1.125 1.125V5.62a.375.375 0 0 1-.375.375zm-5.626 7.882h6.188a.75.75 0 1 1 0 1.5.187.187 0 0 0-.188.187v3.93c0 .621-.503 1.125-1.125 1.125h-3.563a1.125 1.125 0 0 1-1.125-1.125v-3.93a.188.188 0 0 0-.187-.187.75.75 0 1 1 0-1.5zM3.75 6.752h16.5a.75.75 0 0 1 0 1.5.187.187 0 0 0-.184.188v4.305a.375.375 0 0 1-.375.375h-5.09a.375.375 0 0 1-.375-.321 2.25 2.25 0 0 0-4.454 0 .375.375 0 0 1-.371.32H4.312a.375.375 0 0 1-.375-.374V8.44a.187.187 0 0 0-.187-.188.75.75 0 0 1 0-1.5z" })); }