@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) • 814 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./Map.js.flow";
export default function Map(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="M20.555 17.831A.998.998 0 0 0 21 17V3a.998.998 0 0 0-1.554-.832l-5.392 3.595-4.429-3.544a1.049 1.049 0 0 0-.589-.211 1.065 1.065 0 0 0-.591.16l-6 4A1 1 0 0 0 2 7v14a1 1 0 0 0 1.555.831l5.392-3.594 4.429 3.543c.18.146.401.22.624.22a.985.985 0 0 0 .433-.098l6.122-4.071zM4 7.535l4-2.667v11.597l-4 2.667V7.535zm15 8.93l-4 2.667V7.535l4-2.667v11.597z" />
</OrbitIcon>
);
}