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.38 kB
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function RadiusSearch(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.02 18.555a.833.833 0 0 1-.195 1.164l-1.427 1.019a1.25 1.25 0 0 1-1.477-.016L2.5 16.654a1.254 1.254 0 0 1-.5-1V3.25a1.25 1.25 0 0 1 2.022-.982l4.417 3.41a.417.417 0 0 0 .5.009l4.833-3.454a1.25 1.25 0 0 1 1.453 0l5.417 3.869c.327.235.522.614.523 1.017v4.16a.833.833 0 0 1-1.667 0V7.547a.417.417 0 0 0-.163-.336l-3.666-2.616a.208.208 0 0 0-.33.167V9.5a.833.833 0 0 1-1.666 0V4.76a.208.208 0 0 0-.33-.167L9.679 7.208a.417.417 0 0 0-.175.34v10.668a.208.208 0 0 0 .33.166l.025-.02a.833.833 0 0 1 1.161.194zM3.666 4.523v10.715c0 .13.061.254.166.333L7.5 18.32a.208.208 0 0 0 .333-.167V7.522a.417.417 0 0 0-.167-.333L4 4.356a.208.208 0 0 0-.333.167zm18.087 17.231v.002a.833.833 0 0 1-1.178 0L18.58 19.76a.417.417 0 0 0-.506-.063 4.59 4.59 0 1 1 1.621-1.621.417.417 0 0 0 .064.506l1.995 1.994a.833.833 0 0 1 0 1.178zm-8.922-6.005a2.916 2.916 0 0 0 2.917 2.916 2.916 2.916 0 1 0-2.917-2.916z" })); }