@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.
22 lines • 920 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function RadiusSearch(props) {
const {
color,
size,
customColor,
className,
dataTest
} = props;
return React.createElement(OrbitIcon, {
viewBox: "0 0 24 24",
size: size,
color: color,
customColor: customColor,
className: className,
dataTest: dataTest
}, React.createElement("path", {
d: "M14 9.294V7.481l3-2.399V9h2V3a1.002 1.002 0 0 0-1.625-.78L13 5.72l-4.375-3.5a1.008 1.008 0 0 0-.627-.21c-.216 0-.448.069-.622.21l-5 4A.995.995 0 0 0 2 7v14a1 1 0 0 0 1.625.78l5-4A.997.997 0 0 0 9 17v-1a7 7 0 0 1 5-6.706zM7 16.52l-3 2.4V7.481l3-2.399V16.52zm13.167 2.233L23.414 22 22 23.414l-3.247-3.247A4.964 4.964 0 0 1 16 21c-2.757 0-5-2.243-5-5s2.243-5 5-5 5 2.243 5 5a4.964 4.964 0 0 1-.833 2.753zM16 19c1.654 0 3-1.346 3-3s-1.346-3-3-3-3 1.346-3 3 1.346 3 3 3z"
}));
}