UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

25 lines 913 B
const React = require("react"); const { forwardRef } = require("react"); const MoonIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M11.582 12.42c-2.131-2.19-2.242-5.895-.9-8.64a.562.562 0 0 0-.675-.758A9.3 9.3 0 0 0 5.77 5.44a9.167 9.167 0 0 0-.171 12.96 9.166 9.166 0 0 0 12.96-.17 9.26 9.26 0 0 0 2.419-4.236.562.562 0 0 0-.76-.675c-2.742 1.342-6.448 1.23-8.636-.9", clipRule: "evenodd" })); const ForwardRef = forwardRef(MoonIcon); module.exports = ForwardRef;