- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
32 lines
1.1 KiB
JavaScript
32 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
var jsxRuntime = require('react/jsx-runtime');
|
|
var react = require('@chakra-ui/react');
|
|
|
|
const SunIcon = react.createIcon({
|
|
displayName: "SunIcon",
|
|
path: /* @__PURE__ */ jsxRuntime.jsxs(
|
|
"g",
|
|
{
|
|
strokeLinejoin: "round",
|
|
strokeLinecap: "round",
|
|
strokeWidth: "2",
|
|
fill: "none",
|
|
stroke: "currentColor",
|
|
children: [
|
|
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "5" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 1v2" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 21v2" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.22 4.22l1.42 1.42" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.36 18.36l1.42 1.42" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M1 12h2" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 12h2" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4.22 19.78l1.42-1.42" }),
|
|
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.36 5.64l1.42-1.42" })
|
|
]
|
|
}
|
|
)
|
|
});
|
|
|
|
exports.SunIcon = SunIcon;
|