@kiwicom/orbit-components
Version:
<div align="center"> <a href="https://orbit.kiwi" target="_blank"> <img alt="orbit-components" src="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components.png" srcset="https://orbit.kiwi/wp-content/uploads/2018/08/orbit-components@2x.png 2x"
21 lines (19 loc) • 951 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
import type { Props } from "./RadiusSearch.js.flow";
export default function RadiusSearch(props: Props) {
const { color, size, customColor, className, dataTest } = props;
return (
<OrbitIcon
viewBox="0 0 24 24"
size={size}
color={color}
customColor={customColor}
className={className}
dataTest={dataTest}
>
<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" />
</OrbitIcon>
);
}