@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 • 764 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Search(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: "M9.815 3.19a6.625 6.625 0 0 1 5.624 10.128l4.927 4.933a1.5 1.5 0 1 1-2.123 2.12l-4.926-4.931A6.625 6.625 0 1 1 9.815 3.19zm0 2.25a4.375 4.375 0 1 0 0 8.75 4.375 4.375 0 0 0 0-8.75z"
}));
}