@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 945 B
JavaScript
const React = require("react");
function MoonIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M11.536 12.466c-2.368-2.432-2.491-6.55-1-9.599a.625.625 0 0 0-.75-.842A10.3 10.3 0 0 0 5.078 4.71c-4.029 3.924-4.114 10.371-.19 14.4 4.029 3.924 10.475 3.84 14.4-.188 1.3-1.3 2.228-2.926 2.687-4.707a.625.625 0 0 0-.844-.75c-3.047 1.49-7.165 1.367-9.595-1",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(MoonIcon);
module.exports = ForwardRef;