UNPKG

@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.

18 lines 749 B
/* eslint-disable */ import * as React from "react"; import OrbitIcon from "../Icon"; export default function Moon(props) { return React.createElement(OrbitIcon, { viewBox: "0 0 24 24", size: props.size, color: props.color, customColor: props.customColor, className: props.className, dataTest: props.dataTest, ariaHidden: props.ariaHidden, reverseOnRtl: props.reverseOnRtl, ariaLabel: props.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" })); }