@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.
22 lines • 753 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Sightseeing(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M4 9a1 1 0 0 1-1-1V6.65c0-.395.233-.753.594-.914l8-3.555a.999.999 0 0 1 .812 0l8 3.555A1 1 0 0 1 21 6.65V8a1 1 0 0 1-1 1H4zm17.562 9.684A1.002 1.002 0 0 1 20.613 20H3.387a1 1 0 0 1-.949-1.316l.334-1c.137-.409.519-.684.949-.684H5v-7h2v7h2v-7h2v7h2v-7h2v7h2v-7h2v7h1.279c.431 0 .813.275.95.684l.333 1z"
}));
}