@crossed/unicons
Version:
unicons
29 lines (28 loc) • 584 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { useTheme } from "@crossed/styled";
const Moon = ({
Svg,
Path,
color,
size = 25
}) => {
const theme = useTheme();
return /* @__PURE__ */ jsx(
Svg,
{
width: size,
height: size,
viewBox: "0 0 24 24",
fill: "none",
stroke: color ?? theme.font.color,
strokeWidth: "2",
strokeLinecap: "round",
strokeLinejoin: "round",
children: /* @__PURE__ */ jsx(Path, { d: "M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z" })
}
);
};
export {
Moon
};
//# sourceMappingURL=Moon.js.map