UNPKG

@heroui/shared-icons

Version:

Internal icons set, commonly used in the components stories

45 lines (43 loc) 998 B
// src/sun.tsx import { jsx, jsxs } from "react/jsx-runtime"; var SunIcon = (props) => /* @__PURE__ */ jsxs( "svg", { "aria-hidden": "true", focusable: "false", height: "1em", role: "presentation", viewBox: "0 0 512 512", width: "1em", ...props, children: [ /* @__PURE__ */ jsx( "path", { d: "M256 48v48M256 416v48M403.08 108.92l-33.94 33.94M142.86 369.14l-33.94 33.94M464 256h-48M96 256H48M403.08 403.08l-33.94-33.94M142.86 142.86l-33.94-33.94", fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeMiterlimit: 10, strokeWidth: 32 } ), /* @__PURE__ */ jsx( "circle", { cx: 256, cy: 256, fill: "none", r: 80, stroke: "currentColor", strokeLinecap: "round", strokeMiterlimit: 10, strokeWidth: 32 } ) ] } ); export { SunIcon };