@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 • 792 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Map(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: "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"
}));
}