@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 • 829 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Compass(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: "M12 2c5.5 0 10 4.5 10 10s-4.5 10-10 10S2 17.5 2 12 6.5 2 12 2zm6.1 5.3c.1-.2.1-.5 0-.7-.2-.5-.8-.8-1.3-.6L9.9 8.5c-.7.2-1.2.8-1.5 1.5l-2.5 6.9c-.1.2-.1.5 0 .7.2.5.8.7 1.3.5l6.7-2.8c.6-.3 1.1-.8 1.4-1.3l2.8-6.7zm-8.4 3.1l3.7 3.6-6.1 2.7 2.4-6.3z"
}));
}