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.

18 lines 1.29 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Map(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: "M22 7.842a1.25 1.25 0 0 0-.547-1.034L15.62 2.84a1.244 1.244 0 0 0-1.397-.005l-.016.01-4.86 3.575a.417.417 0 0 1-.494 0L3.99 2.862A1.25 1.25 0 0 0 2 3.871v12.28a1.25 1.25 0 0 0 .547 1.033l5.833 3.968a1.25 1.25 0 0 0 1.397.006l.016-.012 4.86-3.574a.417.417 0 0 1 .493 0l4.864 3.558A1.25 1.25 0 0 0 22 20.121V7.842zm-12.083.429a.417.417 0 0 1 .166-.333l3.667-2.743a.208.208 0 0 1 .333.167v10.359a.417.417 0 0 1-.166.333l-3.667 2.744a.208.208 0 0 1-.333-.167V8.271zm-6.25-3.17A.208.208 0 0 1 4 4.936L8.083 7.92a.417.417 0 0 1 .171.333v10.402a.207.207 0 0 1-.11.184.21.21 0 0 1-.216-.012l-4.075-2.772a.417.417 0 0 1-.186-.345V5.102zM20.333 18.89a.208.208 0 0 1-.333.167l-4.083-2.985a.417.417 0 0 1-.167-.333v-10.4a.207.207 0 0 1 .11-.184.21.21 0 0 1 .216.012l4.075 2.772a.417.417 0 0 1 .182.345V18.89z" })); }