@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 783 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Sightseeing.js.flow";
export default function Sightseeing(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}