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.

28 lines 1.64 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Anywhere(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: "M8.726 17.732c-1.673-.418-3.263-1.255-4.435-2.427a.809.809 0 0 1 0-1.171.809.809 0 0 1 1.172 0c3.012 2.929 7.782 2.845 10.627-.168a7.476 7.476 0 0 0 0-10.46.809.809 0 0 1 0-1.171.809.809 0 0 1 1.172 0 9.142 9.142 0 0 1 0 12.97c-1.34 1.256-3.013 2.176-4.854 2.51-.25.085-.334.252-.334.503v.084l.669 1.673a.46.46 0 0 0 .418.251h2.846c.502 0 .836.335.836.837s-.334.837-.836.837H5.128c-.502 0-.837-.335-.837-.837s.335-.837.837-.837h2.845a.46.46 0 0 0 .418-.25l.67-1.758c.083-.251-.084-.502-.335-.586zm8.285-9.205c0 3.598-2.845 6.527-6.527 6.527-3.515 0-6.444-2.929-6.444-6.527C4.04 4.93 6.885 2 10.483 2s6.528 2.929 6.528 6.527zm-2.845-.25c.167-.42.083-.921-.168-1.172l-.502-.586c-.335-.335-.837-.502-1.255-.335-.335.084-.67 0-.837-.25l-.92-1.005-1.423-1.59c-.084-.084-.251-.168-.418-.084-.67.251-1.34.586-1.842 1.088-.083.084-.25.167-.334.251a.404.404 0 0 0 0 .586L8.14 7.02c.251.336.251.838-.083 1.089l-.251.25c-.335.336-.419.838-.084 1.089l1.172 1.171c.25.335.753.335 1.087.084l1.423-1.339.251-.251a.89.89 0 0 1 1.004-.167c.586.25 1.255-.084 1.506-.67z" })); }