@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.07 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function LocationA(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.876 7.815l-.914 2.575c0 .083.083.25.166.25h1.828c.083 0 .166-.083.166-.25l-.914-2.575c-.083-.166-.25-.166-.332 0zM12.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 2zm3.24 12.461h-.083c-.416 0-.83-.25-.997-.664l-.415-1.164c0-.083-.084-.083-.167-.083h-3.323c-.083 0-.166.083-.166.083l-.415 1.163c-.083.416-.498.665-.914.665-.748 0-1.246-.748-.997-1.412l2.742-7.394c.166-.415.498-.664.997-.664h.996c.416 0 .831.249.997.664l2.742 7.394c.249.664-.25 1.412-.997 1.412z"
}));
}