Files
Andrei 58f8093689 Rebrand from 'Redirect Intelligence v2' to 'URL Tracker Tool V2' throughout UI
- 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
2025-08-19 19:12:23 +00:00

30 lines
959 B
JavaScript

import { jsxs, jsx } from 'react/jsx-runtime';
import { createIcon } from '@chakra-ui/react';
const SunIcon = createIcon({
displayName: "SunIcon",
path: /* @__PURE__ */ jsxs(
"g",
{
strokeLinejoin: "round",
strokeLinecap: "round",
strokeWidth: "2",
fill: "none",
stroke: "currentColor",
children: [
/* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "5" }),
/* @__PURE__ */ jsx("path", { d: "M12 1v2" }),
/* @__PURE__ */ jsx("path", { d: "M12 21v2" }),
/* @__PURE__ */ jsx("path", { d: "M4.22 4.22l1.42 1.42" }),
/* @__PURE__ */ jsx("path", { d: "M18.36 18.36l1.42 1.42" }),
/* @__PURE__ */ jsx("path", { d: "M1 12h2" }),
/* @__PURE__ */ jsx("path", { d: "M21 12h2" }),
/* @__PURE__ */ jsx("path", { d: "M4.22 19.78l1.42-1.42" }),
/* @__PURE__ */ jsx("path", { d: "M18.36 5.64l1.42-1.42" })
]
}
)
});
export { SunIcon };