cetec-design-system 0.0.23 → 0.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1026,10 +1026,6 @@ const Me = {
1026
1026
  ...o
1027
1027
  }) => {
1028
1028
  const [n, a] = k(o);
1029
- function i(d) {
1030
- return new URL("./sprite.svg", import.meta.url).href + `#${d}`;
1031
- }
1032
- const s = i(e);
1033
1029
  return /* @__PURE__ */ p(
1034
1030
  y,
1035
1031
  {
@@ -1039,7 +1035,7 @@ const Me = {
1039
1035
  xmlns: "http://www.w3.org/2000/svg",
1040
1036
  className: h(dt({ size: t, fill: r }), n),
1041
1037
  ...a,
1042
- children: /* @__PURE__ */ p("use", { xlinkHref: s })
1038
+ children: /* @__PURE__ */ p("use", { xlinkHref: `/sprite.svg#${e}` })
1043
1039
  }
1044
1040
  );
1045
1041
  }, eo = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cetec-design-system",
3
- "version": "0.0.23",
3
+ "version": "0.0.25",
4
4
  "scripts": {
5
5
  "cssgen": "npx panda cssgen 'src/**/*.css'",
6
6
  "prepare": "npx panda codegen",
@@ -1,3 +0,0 @@
1
- export function getSvgUrl(name: string) {
2
- return new URL(`./sprite.svg`, import.meta.url).href + `#${name}`;
3
- }