UNPKG

@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.04 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function LocationC(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: "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.237 10.55c-.665 1.08-1.91 2.16-3.988 2.16-2.741 0-4.901-1.994-4.901-4.901 0-2.908 2.243-4.901 4.901-4.901 2.16 0 3.406.997 3.988 2.16.332.498 0 1.163-.582 1.329h-.083a.955.955 0 0 1-1.163-.416c-.332-.581-.997-1.08-2.16-1.08-1.329 0-2.741.914-2.741 2.908 0 1.745 1.329 2.824 2.741 2.824 1.163 0 1.828-.498 2.16-1.08.25-.415.665-.581 1.08-.415l.166.083c.665 0 .914.748.582 1.33z" })); }