@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 • 1.25 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function LocationG(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: "M12.042 2C7.722 2 4.15 5.572 4.15 9.892c0 5.4 5.4 10.384 7.061 11.796.499.416 1.163.416 1.579 0 1.661-1.412 7.06-6.313 7.06-11.796C19.935 5.572 16.363 2 12.043 2zm4.486 11.547a.922.922 0 0 1-.914.914c-.997 0-.914-.997-.914-.997-.415.582-1.329 1.163-2.658 1.163-2.658 0-4.735-1.91-4.735-4.901 0-2.99 2.243-4.902 4.901-4.902 2.077 0 3.24.914 3.905 1.911.332.499.083 1.08-.499 1.33l-.249.082c-.415.167-.83 0-1.08-.332-.332-.498-.997-.997-2.077-.997-1.246 0-2.741.831-2.741 2.99 0 1.995 1.329 2.992 2.824 2.992 1.33 0 1.994-.748 2.243-1.247.083-.083.083-.249-.166-.249h-1.661a.922.922 0 0 1-.914-.914c0-.498.415-.913.914-.913h2.99c.499 0 .914.415.914.913v3.157h-.083z"
}));
}