@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 • 839 B
JavaScript
/* eslint-disable */
import * as React from "react";
import OrbitIcon from "../Icon";
export default function Moon(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: "M20.83 14.156c-4.46 1.63-9.351-.6-11.067-5.06a8.76 8.76 0 0 1 0-5.917c.171-.429-.086-.943-.515-1.115a.734.734 0 0 0-.6 0C3.412 4.037.667 9.954 2.64 15.271c1.973 5.317 7.894 8.062 13.213 6.09a10.184 10.184 0 0 0 6.092-6.09c.172-.428-.086-.943-.515-1.115h-.6z"
}));
}