@tamagui/helpers-icon 1.88.1 → 1.88.2

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.
package/dist/cjs/index.js CHANGED
@@ -13,9 +13,4 @@ var src_exports = {};
13
13
  module.exports = __toCommonJS(src_exports);
14
14
  __reExport(src_exports, require("./IconProps"), module.exports);
15
15
  __reExport(src_exports, require("./themed"), module.exports);
16
- // Annotate the CommonJS export names for ESM import in node:
17
- 0 && (module.exports = {
18
- ...require("./IconProps"),
19
- ...require("./themed")
20
- });
21
16
  //# sourceMappingURL=index.js.map
@@ -51,8 +51,4 @@ function themed(Component, opts = {
51
51
  );
52
52
  };
53
53
  }
54
- // Annotate the CommonJS export names for ESM import in node:
55
- 0 && (module.exports = {
56
- themed
57
- });
58
54
  //# sourceMappingURL=themed.js.map
@@ -1 +1,15 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from == "object" || typeof from == "function")
8
+ for (let key of __getOwnPropNames(from))
9
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
+ return to;
11
+ };
12
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
13
+ var IconProps_exports = {};
14
+ module.exports = __toCommonJS(IconProps_exports);
1
15
  //# sourceMappingURL=IconProps.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": [],
4
- "mappings": "",
3
+ "sources": ["../../src/IconProps.ts"],
4
+ "mappings": ";;;;;;;;;;;;AAAA;AAAA;",
5
5
  "names": []
6
6
  }
@@ -1,3 +1,22 @@
1
- export * from "./IconProps";
2
- export * from "./themed";
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from == "object" || typeof from == "function")
8
+ for (let key of __getOwnPropNames(from))
9
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
+ return to;
11
+ }, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
12
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
13
+ var src_exports = {};
14
+ module.exports = __toCommonJS(src_exports);
15
+ __reExport(src_exports, require("./IconProps"), module.exports);
16
+ __reExport(src_exports, require("./themed"), module.exports);
17
+ // Annotate the CommonJS export names for ESM import in node:
18
+ 0 && (module.exports = {
19
+ ...require("./IconProps"),
20
+ ...require("./themed")
21
+ });
3
22
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
- "mappings": "AAAA,cAAc;AACd,cAAc;",
4
+ "mappings": ";;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,wBAAd;AACA,wBAAc,qBADd;",
5
5
  "names": []
6
6
  }
@@ -1,20 +1,46 @@
1
- import { getTokenValue, getVariable, usePropsAndStyle } from "@tamagui/core";
2
- import React from "react";
3
- import { jsx } from "react/jsx-runtime";
4
- React.keep;
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: !0 });
10
+ }, __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from == "object" || typeof from == "function")
12
+ for (let key of __getOwnPropNames(from))
13
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ // If the importer is in node compatibility mode or this is not an ESM
18
+ // file that has been converted to a CommonJS file using a Babel-
19
+ // compatible transform (i.e. "__esModule" has not been set), then set
20
+ // "default" to the CommonJS "module.exports" for node compatibility.
21
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
22
+ mod
23
+ )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
24
+ var themed_exports = {};
25
+ __export(themed_exports, {
26
+ themed: () => themed
27
+ });
28
+ module.exports = __toCommonJS(themed_exports);
29
+ var import_core = require("@tamagui/core"), import_react = __toESM(require("react")), import_jsx_runtime = require("react/jsx-runtime");
30
+ import_react.default.keep;
5
31
  function themed(Component, opts = {
6
32
  defaultThemeColor: process.env.DEFAULT_ICON_THEME_COLOR || "$color",
7
33
  defaultStrokeWidth: 2,
8
34
  fallbackColor: "#000"
9
35
  }) {
10
36
  return (propsIn) => {
11
- const [props, style, theme] = usePropsAndStyle(propsIn, {
37
+ const [props, style, theme] = (0, import_core.usePropsAndStyle)(propsIn, {
12
38
  resolveValues: "web"
13
39
  // iOS doesnt support dynamic values for SVG so only optimize on web
14
- }), defaultColor = style.color ?? opts.defaultThemeColor, color = getVariable(
40
+ }), defaultColor = style.color ?? opts.defaultThemeColor, color = (0, import_core.getVariable)(
15
41
  (defaultColor ? theme[defaultColor] : void 0) || style.color || (props.disableTheme ? null : theme.color) || opts.fallbackColor
16
- ), size = typeof props.size == "string" ? getTokenValue(props.size, "size") : props.size, strokeWidth = typeof props.strokeWidth == "string" ? getTokenValue(props.strokeWidth, "size") : props.strokeWidth ?? `${opts.defaultStrokeWidth}`;
17
- return /* @__PURE__ */ jsx(
42
+ ), size = typeof props.size == "string" ? (0, import_core.getTokenValue)(props.size, "size") : props.size, strokeWidth = typeof props.strokeWidth == "string" ? (0, import_core.getTokenValue)(props.strokeWidth, "size") : props.strokeWidth ?? `${opts.defaultStrokeWidth}`;
43
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
18
44
  Component,
19
45
  {
20
46
  ...props,
@@ -26,7 +52,8 @@ function themed(Component, opts = {
26
52
  );
27
53
  };
28
54
  }
29
- export {
55
+ // Annotate the CommonJS export names for ESM import in node:
56
+ 0 && (module.exports = {
30
57
  themed
31
- };
58
+ });
32
59
  //# sourceMappingURL=themed.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/themed.tsx"],
4
- "mappings": "AAAA,SAAS,eAAe,aAAa,wBAAwB;AAC7D,OAAO,WAAW;AA8CZ;AAzCN,MAAM;AAQC,SAAS,OACd,WACA,OAAsB;AAAA,EACpB,mBAAmB,QAAQ,IAAI,4BAA4B;AAAA,EAC3D,oBAAoB;AAAA,EACpB,eAAe;AACjB,GACA;AAoCA,SAnCgB,CAAC,YAAuB;AACtC,UAAM,CAAC,OAAO,OAAO,KAAK,IAAI,iBAAiB,SAAS;AAAA,MACtD,eAAe;AAAA;AAAA,IACjB,CAAC,GAEK,eAAe,MAAM,SAAS,KAAK,mBAEnC,QAAQ;AAAA,OACX,eAAe,MAAM,YAAY,IAAI,WACpC,MAAM,UACJ,MAAM,eAA6B,OAAd,MAAM,UAC7B,KAAK;AAAA,IACT,GAEM,OACJ,OAAO,MAAM,QAAS,WAClB,cAAc,MAAM,MAAa,MAAM,IACvC,MAAM,MAEN,cACJ,OAAO,MAAM,eAAgB,WACzB,cAAc,MAAM,aAAoB,MAAM,IAC9C,MAAM,eAAe,GAAG,KAAK,kBAAkB;AAErD,WACE;AAAA,MAAC;AAAA;AAAA,QACE,GAAG;AAAA,QACJ;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA;AAAA,IACF;AAAA,EAEJ;AAGF;",
5
- "names": []
4
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6D,0BAC7D,eAAkB,2BA8CZ;AAzCN,aAAAA,QAAM;AAQC,SAAS,OACd,WACA,OAAsB;AAAA,EACpB,mBAAmB,QAAQ,IAAI,4BAA4B;AAAA,EAC3D,oBAAoB;AAAA,EACpB,eAAe;AACjB,GACA;AAoCA,SAnCgB,CAAC,YAAuB;AACtC,UAAM,CAAC,OAAO,OAAO,KAAK,QAAI,8BAAiB,SAAS;AAAA,MACtD,eAAe;AAAA;AAAA,IACjB,CAAC,GAEK,eAAe,MAAM,SAAS,KAAK,mBAEnC,YAAQ;AAAA,OACX,eAAe,MAAM,YAAY,IAAI,WACpC,MAAM,UACJ,MAAM,eAA6B,OAAd,MAAM,UAC7B,KAAK;AAAA,IACT,GAEM,OACJ,OAAO,MAAM,QAAS,eAClB,2BAAc,MAAM,MAAa,MAAM,IACvC,MAAM,MAEN,cACJ,OAAO,MAAM,eAAgB,eACzB,2BAAc,MAAM,aAAoB,MAAM,IAC9C,MAAM,eAAe,GAAG,KAAK,kBAAkB;AAErD,WACE;AAAA,MAAC;AAAA;AAAA,QACE,GAAG;AAAA,QACJ;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA;AAAA,IACF;AAAA,EAEJ;AAGF;",
5
+ "names": ["React"]
6
6
  }
@@ -1 +1,15 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from == "object" || typeof from == "function")
8
+ for (let key of __getOwnPropNames(from))
9
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
+ return to;
11
+ };
12
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
13
+ var IconProps_exports = {};
14
+ module.exports = __toCommonJS(IconProps_exports);
1
15
  //# sourceMappingURL=IconProps.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": [],
4
- "mappings": "",
3
+ "sources": ["../../src/IconProps.ts"],
4
+ "mappings": ";;;;;;;;;;;;AAAA;AAAA;",
5
5
  "names": []
6
6
  }
@@ -1,3 +1,22 @@
1
- export * from "./IconProps";
2
- export * from "./themed";
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __copyProps = (to, from, except, desc) => {
7
+ if (from && typeof from == "object" || typeof from == "function")
8
+ for (let key of __getOwnPropNames(from))
9
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
10
+ return to;
11
+ }, __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
12
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
13
+ var src_exports = {};
14
+ module.exports = __toCommonJS(src_exports);
15
+ __reExport(src_exports, require("./IconProps"), module.exports);
16
+ __reExport(src_exports, require("./themed"), module.exports);
17
+ // Annotate the CommonJS export names for ESM import in node:
18
+ 0 && (module.exports = {
19
+ ...require("./IconProps"),
20
+ ...require("./themed")
21
+ });
3
22
  //# sourceMappingURL=index.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/index.ts"],
4
- "mappings": "AAAA,cAAc;AACd,cAAc;",
4
+ "mappings": ";;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,wBAAd;AACA,wBAAc,qBADd;",
5
5
  "names": []
6
6
  }
@@ -1,5 +1,6 @@
1
1
  import { getTokenValue, getVariable, usePropsAndStyle } from "@tamagui/core";
2
2
  import React from "react";
3
+ import { jsx } from "react/jsx-runtime";
3
4
  React.keep;
4
5
  function themed(Component, opts = {
5
6
  defaultThemeColor: process.env.DEFAULT_ICON_THEME_COLOR || "$color",
@@ -13,13 +14,16 @@ function themed(Component, opts = {
13
14
  }), defaultColor = style.color ?? opts.defaultThemeColor, color = getVariable(
14
15
  (defaultColor ? theme[defaultColor] : void 0) || style.color || (props.disableTheme ? null : theme.color) || opts.fallbackColor
15
16
  ), size = typeof props.size == "string" ? getTokenValue(props.size, "size") : props.size, strokeWidth = typeof props.strokeWidth == "string" ? getTokenValue(props.strokeWidth, "size") : props.strokeWidth ?? `${opts.defaultStrokeWidth}`;
16
- return <Component
17
- {...props}
18
- color={color}
19
- size={size}
20
- strokeWidth={strokeWidth}
21
- style={style}
22
- />;
17
+ return /* @__PURE__ */ jsx(
18
+ Component,
19
+ {
20
+ ...props,
21
+ color,
22
+ size,
23
+ strokeWidth,
24
+ style
25
+ }
26
+ );
23
27
  };
24
28
  }
25
29
  export {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/themed.tsx"],
4
- "mappings": "AAAA,SAAS,eAAe,aAAa,wBAAwB;AAC7D,OAAO,WAAW;AAKlB,MAAM;AAQC,SAAS,OACd,WACA,OAAsB;AAAA,EACpB,mBAAmB,QAAQ,IAAI,4BAA4B;AAAA,EAC3D,oBAAoB;AAAA,EACpB,eAAe;AACjB,GACA;AAoCA,SAnCgB,CAAC,YAAuB;AACtC,UAAM,CAAC,OAAO,OAAO,KAAK,IAAI,iBAAiB,SAAS;AAAA,MACtD,eAAe;AAAA;AAAA,IACjB,CAAC,GAEK,eAAe,MAAM,SAAS,KAAK,mBAEnC,QAAQ;AAAA,OACX,eAAe,MAAM,YAAY,IAAI,WACpC,MAAM,UACJ,MAAM,eAA6B,OAAd,MAAM,UAC7B,KAAK;AAAA,IACT,GAEM,OACJ,OAAO,MAAM,QAAS,WAClB,cAAc,MAAM,MAAa,MAAM,IACvC,MAAM,MAEN,cACJ,OAAO,MAAM,eAAgB,WACzB,cAAc,MAAM,aAAoB,MAAM,IAC9C,MAAM,eAAe,GAAG,KAAK,kBAAkB;AAErD,WACE,CAAC;AAAA,UACK;AAAA,MACJ,OAAO;AAAA,MACP,MAAM;AAAA,MACN,aAAa;AAAA,MACb,OAAO;AAAA,IACT;AAAA,EAEJ;AAGF;",
4
+ "mappings": "AAAA,SAAS,eAAe,aAAa,wBAAwB;AAC7D,OAAO,WAAW;AA8CZ;AAzCN,MAAM;AAQC,SAAS,OACd,WACA,OAAsB;AAAA,EACpB,mBAAmB,QAAQ,IAAI,4BAA4B;AAAA,EAC3D,oBAAoB;AAAA,EACpB,eAAe;AACjB,GACA;AAoCA,SAnCgB,CAAC,YAAuB;AACtC,UAAM,CAAC,OAAO,OAAO,KAAK,IAAI,iBAAiB,SAAS;AAAA,MACtD,eAAe;AAAA;AAAA,IACjB,CAAC,GAEK,eAAe,MAAM,SAAS,KAAK,mBAEnC,QAAQ;AAAA,OACX,eAAe,MAAM,YAAY,IAAI,WACpC,MAAM,UACJ,MAAM,eAA6B,OAAd,MAAM,UAC7B,KAAK;AAAA,IACT,GAEM,OACJ,OAAO,MAAM,QAAS,WAClB,cAAc,MAAM,MAAa,MAAM,IACvC,MAAM,MAEN,cACJ,OAAO,MAAM,eAAgB,WACzB,cAAc,MAAM,aAAoB,MAAM,IAC9C,MAAM,eAAe,GAAG,KAAK,kBAAkB;AAErD,WACE;AAAA,MAAC;AAAA;AAAA,QACE,GAAG;AAAA,QACJ;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA;AAAA,IACF;AAAA,EAEJ;AAGF;",
5
5
  "names": []
6
6
  }
@@ -1,28 +1,59 @@
1
- import { getTokenValue, getVariable, usePropsAndStyle } from "@tamagui/core";
2
- import React from "react";
3
- React.keep;
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: !0 });
10
+ }, __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from == "object" || typeof from == "function")
12
+ for (let key of __getOwnPropNames(from))
13
+ !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ return to;
15
+ };
16
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
+ // If the importer is in node compatibility mode or this is not an ESM
18
+ // file that has been converted to a CommonJS file using a Babel-
19
+ // compatible transform (i.e. "__esModule" has not been set), then set
20
+ // "default" to the CommonJS "module.exports" for node compatibility.
21
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
22
+ mod
23
+ )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
24
+ var themed_exports = {};
25
+ __export(themed_exports, {
26
+ themed: () => themed
27
+ });
28
+ module.exports = __toCommonJS(themed_exports);
29
+ var import_core = require("@tamagui/core"), import_react = __toESM(require("react")), import_jsx_runtime = require("react/jsx-runtime");
30
+ import_react.default.keep;
4
31
  function themed(Component, opts = {
5
32
  defaultThemeColor: process.env.DEFAULT_ICON_THEME_COLOR || "$color",
6
33
  defaultStrokeWidth: 2,
7
34
  fallbackColor: "#000"
8
35
  }) {
9
36
  return (propsIn) => {
10
- const [props, style, theme] = usePropsAndStyle(propsIn, {
37
+ const [props, style, theme] = (0, import_core.usePropsAndStyle)(propsIn, {
11
38
  resolveValues: "web"
12
39
  // iOS doesnt support dynamic values for SVG so only optimize on web
13
- }), defaultColor = style.color ?? opts.defaultThemeColor, color = getVariable(
40
+ }), defaultColor = style.color ?? opts.defaultThemeColor, color = (0, import_core.getVariable)(
14
41
  (defaultColor ? theme[defaultColor] : void 0) || style.color || (props.disableTheme ? null : theme.color) || opts.fallbackColor
15
- ), size = typeof props.size == "string" ? getTokenValue(props.size, "size") : props.size, strokeWidth = typeof props.strokeWidth == "string" ? getTokenValue(props.strokeWidth, "size") : props.strokeWidth ?? `${opts.defaultStrokeWidth}`;
16
- return <Component
17
- {...props}
18
- color={color}
19
- size={size}
20
- strokeWidth={strokeWidth}
21
- style={style}
22
- />;
42
+ ), size = typeof props.size == "string" ? (0, import_core.getTokenValue)(props.size, "size") : props.size, strokeWidth = typeof props.strokeWidth == "string" ? (0, import_core.getTokenValue)(props.strokeWidth, "size") : props.strokeWidth ?? `${opts.defaultStrokeWidth}`;
43
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
44
+ Component,
45
+ {
46
+ ...props,
47
+ color,
48
+ size,
49
+ strokeWidth,
50
+ style
51
+ }
52
+ );
23
53
  };
24
54
  }
25
- export {
55
+ // Annotate the CommonJS export names for ESM import in node:
56
+ 0 && (module.exports = {
26
57
  themed
27
- };
58
+ });
28
59
  //# sourceMappingURL=themed.js.map
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/themed.tsx"],
4
- "mappings": "AAAA,SAAS,eAAe,aAAa,wBAAwB;AAC7D,OAAO,WAAW;AAKlB,MAAM;AAQC,SAAS,OACd,WACA,OAAsB;AAAA,EACpB,mBAAmB,QAAQ,IAAI,4BAA4B;AAAA,EAC3D,oBAAoB;AAAA,EACpB,eAAe;AACjB,GACA;AAoCA,SAnCgB,CAAC,YAAuB;AACtC,UAAM,CAAC,OAAO,OAAO,KAAK,IAAI,iBAAiB,SAAS;AAAA,MACtD,eAAe;AAAA;AAAA,IACjB,CAAC,GAEK,eAAe,MAAM,SAAS,KAAK,mBAEnC,QAAQ;AAAA,OACX,eAAe,MAAM,YAAY,IAAI,WACpC,MAAM,UACJ,MAAM,eAA6B,OAAd,MAAM,UAC7B,KAAK;AAAA,IACT,GAEM,OACJ,OAAO,MAAM,QAAS,WAClB,cAAc,MAAM,MAAa,MAAM,IACvC,MAAM,MAEN,cACJ,OAAO,MAAM,eAAgB,WACzB,cAAc,MAAM,aAAoB,MAAM,IAC9C,MAAM,eAAe,GAAG,KAAK,kBAAkB;AAErD,WACE,CAAC;AAAA,UACK;AAAA,MACJ,OAAO;AAAA,MACP,MAAM;AAAA,MACN,aAAa;AAAA,MACb,OAAO;AAAA,IACT;AAAA,EAEJ;AAGF;",
5
- "names": []
4
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,kBAA6D,0BAC7D,eAAkB,2BA8CZ;AAzCN,aAAAA,QAAM;AAQC,SAAS,OACd,WACA,OAAsB;AAAA,EACpB,mBAAmB,QAAQ,IAAI,4BAA4B;AAAA,EAC3D,oBAAoB;AAAA,EACpB,eAAe;AACjB,GACA;AAoCA,SAnCgB,CAAC,YAAuB;AACtC,UAAM,CAAC,OAAO,OAAO,KAAK,QAAI,8BAAiB,SAAS;AAAA,MACtD,eAAe;AAAA;AAAA,IACjB,CAAC,GAEK,eAAe,MAAM,SAAS,KAAK,mBAEnC,YAAQ;AAAA,OACX,eAAe,MAAM,YAAY,IAAI,WACpC,MAAM,UACJ,MAAM,eAA6B,OAAd,MAAM,UAC7B,KAAK;AAAA,IACT,GAEM,OACJ,OAAO,MAAM,QAAS,eAClB,2BAAc,MAAM,MAAa,MAAM,IACvC,MAAM,MAEN,cACJ,OAAO,MAAM,eAAgB,eACzB,2BAAc,MAAM,aAAoB,MAAM,IAC9C,MAAM,eAAe,GAAG,KAAK,kBAAkB;AAErD,WACE;AAAA,MAAC;AAAA;AAAA,QACE,GAAG;AAAA,QACJ;AAAA,QACA;AAAA,QACA;AAAA,QACA;AAAA;AAAA,IACF;AAAA,EAEJ;AAGF;",
5
+ "names": ["React"]
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/helpers-icon",
3
- "version": "1.88.1",
3
+ "version": "1.88.2",
4
4
  "sideEffects": false,
5
5
  "description": "Utilities for icon packages",
6
6
  "source": "src/index.ts",
@@ -21,14 +21,14 @@
21
21
  },
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@tamagui/core": "1.88.1"
24
+ "@tamagui/core": "1.88.2"
25
25
  },
26
26
  "peerDependencies": {
27
27
  "react": "*",
28
28
  "react-native-svg": ">=12"
29
29
  },
30
30
  "devDependencies": {
31
- "@tamagui/build": "1.88.1",
31
+ "@tamagui/build": "1.88.2",
32
32
  "react": "^18.2.0",
33
33
  "react-native-svg": "^13.9.0"
34
34
  }