@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.
28 lines • 816 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Location(props) {
const {
color,
size,
customColor,
className,
dataTest,
ariaHidden,
ariaLabel,
reverseOnRtl
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest,
ariaHidden: ariaHidden,
reverseOnRtl: reverseOnRtl,
ariaLabel: 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"
}));
}