@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 • 1.49 kB
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Settings(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 16.167a4.167 4.167 0 1 1 0-8.334 4.167 4.167 0 0 1 0 8.334m8.75-6.25h-1.552a7.45 7.45 0 0 0-.636-1.534l1.098-1.096a1.25 1.25 0 0 0 0-1.768L18.48 4.34a1.25 1.25 0 0 0-1.767 0l-1.098 1.097a7.418 7.418 0 0 0-1.532-.635V3.25c0-.69-.56-1.25-1.25-1.25h-1.666c-.691 0-1.25.56-1.25 1.25v1.552a7.444 7.444 0 0 0-1.533.636L7.286 4.341a1.25 1.25 0 0 0-1.768 0L4.34 5.519a1.25 1.25 0 0 0 0 1.768l1.098 1.098a7.437 7.437 0 0 0-.635 1.532H3.25c-.69 0-1.25.559-1.25 1.25v1.666c0 .69.56 1.25 1.25 1.25h1.552a7.38 7.38 0 0 0 .636 1.533l-1.1 1.099a1.25 1.25 0 0 0 0 1.768l1.179 1.178c.495.469 1.272.469 1.768 0l1.098-1.098c.486.269 1 .482 1.534.637v1.55c0 .69.559 1.25 1.25 1.25h1.666c.69 0 1.25-.56 1.25-1.25V19.2a7.444 7.444 0 0 0 1.533-.636l1.098 1.098a1.25 1.25 0 0 0 1.768 0l1.178-1.179a1.25 1.25 0 0 0 0-1.767l-1.097-1.098c.268-.485.481-1 .635-1.533h1.552c.69 0 1.25-.56 1.25-1.25v-1.668c0-.691-.56-1.25-1.25-1.25"
}));
}