@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 875 B
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",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M9.811 2.298a1.312 1.312 0 0 1 1.545 1.812c-1.245 2.545-1.085 5.88.757 7.779 1.898 1.84 5.232 2 7.776.757l.037-.017a1.312 1.312 0 0 1 1.776 1.561 10 10 0 0 1-2.609 4.567c-3.822 3.919-10.096 4-14.017.18l-.014-.013c-3.82-3.922-3.738-10.197.181-14.018a10 10 0 0 1 4.568-2.608",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(MoonIcon);
export default ForwardRef;