@sanity/icons
Version:
The Sanity icons.
26 lines (25 loc) • 853 B
JavaScript
import { forwardRef } from "react";
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
const SunIcon = /* @__PURE__ */ forwardRef(function(props, ref) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "sun",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
ref,
children: /* @__PURE__ */ jsx("path", {
d: "M19 12.5H22M3 12.5H6M12.5 6V3M12.5 22V19M17.3891 7.61091L19.5104 5.48959M5.48959 19.5104L7.61091 17.3891M7.61091 7.61091L5.48959 5.48959M19.5104 19.5104L17.3891 17.3891M16 12.5C16 14.433 14.433 16 12.5 16C10.567 16 9 14.433 9 12.5C9 10.567 10.567 9 12.5 9C14.433 9 16 10.567 16 12.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
});
export { SunIcon, SunIcon as default };
//# sourceMappingURL=Sun.js.map