@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.06 kB
JavaScript
import * as React from "react";
import { forwardRef } from "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: "M5.77 5.44a9.3 9.3 0 0 1 4.237-2.418.562.562 0 0 1 .675.758c-1.342 2.745-1.231 6.45.9 8.64 2.188 2.13 5.893 2.24 8.636.9a.562.562 0 0 1 .76.674 9.26 9.26 0 0 1-2.419 4.236",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M5.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-.675"
}));
const ForwardRef = forwardRef(MoonIcon);
export default ForwardRef;