@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 • 726 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Location(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: "M11.997 2A7.926 7.926 0 0 0 4.08 9.917c0 5.456 5.449 10.407 7.118 11.794a1.25 1.25 0 0 0 1.597 0c1.667-1.387 7.119-6.34 7.119-11.795A7.926 7.926 0 0 0 11.997 2zm0 12.084a4.167 4.167 0 1 1 4.167-4.167 4.167 4.167 0 0 1-4.167 4.167z"
}));
}