@tamagui/helpers-icon 1.33.1

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.
@@ -0,0 +1,17 @@
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
+ if (!__hasOwnProp.call(to, key) && key !== except)
10
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
+ }
12
+ return to;
13
+ };
14
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
15
+ var IconProps_exports = {};
16
+ module.exports = __toCommonJS(IconProps_exports);
17
+ //# sourceMappingURL=IconProps.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/IconProps.ts"],
4
+ "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
5
+ "names": []
6
+ }
@@ -0,0 +1,25 @@
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
+ if (!__hasOwnProp.call(to, key) && key !== except)
10
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
11
+ }
12
+ return to;
13
+ };
14
+ var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
+ var src_exports = {};
17
+ module.exports = __toCommonJS(src_exports);
18
+ __reExport(src_exports, require("./IconProps"), module.exports);
19
+ __reExport(src_exports, require("./themed"), module.exports);
20
+ // Annotate the CommonJS export names for ESM import in node:
21
+ 0 && (module.exports = {
22
+ ...require("./IconProps"),
23
+ ...require("./themed")
24
+ });
25
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.ts"],
4
+ "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAAA,wBAAc,wBAAd;AACA,wBAAc,qBADd;",
5
+ "names": []
6
+ }
@@ -0,0 +1,54 @@
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 __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var themed_exports = {};
20
+ __export(themed_exports, {
21
+ themed: () => themed
22
+ });
23
+ module.exports = __toCommonJS(themed_exports);
24
+ var import_jsx_runtime = require("react/jsx-runtime");
25
+ var import_core = require("@tamagui/core");
26
+ function themed(Component) {
27
+ const wrapped = (propsIn) => {
28
+ const props = (0, import_core.useProps)(propsIn);
29
+ const theme = (0, import_core.useTheme)();
30
+ const defaultColor = props.color ?? "black";
31
+ const color = (0, import_core.getVariable)(
32
+ (defaultColor in theme ? theme[defaultColor] : void 0) || props.color || (!props.disableTheme ? theme.color : null) || "#000"
33
+ );
34
+ const size = typeof props.size === "string" ? (0, import_core.getVariableValue)((0, import_core.getTokens)().size[props.size] || props.size) : props.size;
35
+ const strokeWidth = typeof props.strokeWidth === "string" ? (0, import_core.getVariableValue)(
36
+ (0, import_core.getTokens)().size[props.strokeWidth] || props.strokeWidth
37
+ ) : props.strokeWidth ?? "2";
38
+ return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
39
+ Component,
40
+ {
41
+ ...props,
42
+ color,
43
+ size,
44
+ strokeWidth
45
+ }
46
+ );
47
+ };
48
+ return wrapped;
49
+ }
50
+ // Annotate the CommonJS export names for ESM import in node:
51
+ 0 && (module.exports = {
52
+ themed
53
+ });
54
+ //# sourceMappingURL=themed.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/themed.tsx"],
4
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAqCM;AArCN,kBAMO;AAIA,SAAS,OAAO,WAAgC;AACrD,QAAM,UAAU,CAAC,YAAuB;AACtC,UAAM,YAAQ,sBAAS,OAAO;AAC9B,UAAM,YAAQ,sBAAS;AAEvB,UAAM,eAAe,MAAM,SAAS;AAEpC,UAAM,YAAQ;AAAA,OACX,gBAAgB,QAAQ,MAAM,YAAY,IAAI,WAC7C,MAAM,UACL,CAAC,MAAM,eAAe,MAAM,QAAQ,SACrC;AAAA,IACJ;AAEA,UAAM,OACJ,OAAO,MAAM,SAAS,eAClB,kCAAiB,uBAAU,EAAE,KAAK,MAAM,IAAI,KAAK,MAAM,IAAI,IAC3D,MAAM;AAEZ,UAAM,cACJ,OAAO,MAAM,gBAAgB,eACzB;AAAA,UACE,uBAAU,EAAE,KAAK,MAAM,WAAW,KAAK,MAAM;AAAA,IAC/C,IACA,MAAM,eAAe;AAE3B,WACE;AAAA,MAAC;AAAA;AAAA,QACE,GAAG;AAAA,QACJ;AAAA,QACA;AAAA,QACA;AAAA;AAAA,IACF;AAAA,EAEJ;AAEA,SAAO;AACT;",
5
+ "names": []
6
+ }
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=IconProps.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "mappings": "",
5
+ "names": []
6
+ }
@@ -0,0 +1,3 @@
1
+ export * from "./IconProps";
2
+ export * from "./themed";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.ts"],
4
+ "mappings": "AAAA,cAAc;AACd,cAAc;",
5
+ "names": []
6
+ }
@@ -0,0 +1,36 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ import {
3
+ getTokens,
4
+ getVariable,
5
+ getVariableValue,
6
+ useProps,
7
+ useTheme
8
+ } from "@tamagui/core";
9
+ function themed(Component) {
10
+ const wrapped = (propsIn) => {
11
+ const props = useProps(propsIn);
12
+ const theme = useTheme();
13
+ const defaultColor = props.color ?? "black";
14
+ const color = getVariable(
15
+ (defaultColor in theme ? theme[defaultColor] : void 0) || props.color || (!props.disableTheme ? theme.color : null) || "#000"
16
+ );
17
+ const size = typeof props.size === "string" ? getVariableValue(getTokens().size[props.size] || props.size) : props.size;
18
+ const strokeWidth = typeof props.strokeWidth === "string" ? getVariableValue(
19
+ getTokens().size[props.strokeWidth] || props.strokeWidth
20
+ ) : props.strokeWidth ?? "2";
21
+ return /* @__PURE__ */ jsx(
22
+ Component,
23
+ {
24
+ ...props,
25
+ color,
26
+ size,
27
+ strokeWidth
28
+ }
29
+ );
30
+ };
31
+ return wrapped;
32
+ }
33
+ export {
34
+ themed
35
+ };
36
+ //# sourceMappingURL=themed.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/themed.tsx"],
4
+ "mappings": "AAqCM;AArCN;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAIA,SAAS,OAAO,WAAgC;AACrD,QAAM,UAAU,CAAC,YAAuB;AACtC,UAAM,QAAQ,SAAS,OAAO;AAC9B,UAAM,QAAQ,SAAS;AAEvB,UAAM,eAAe,MAAM,SAAS;AAEpC,UAAM,QAAQ;AAAA,OACX,gBAAgB,QAAQ,MAAM,YAAY,IAAI,WAC7C,MAAM,UACL,CAAC,MAAM,eAAe,MAAM,QAAQ,SACrC;AAAA,IACJ;AAEA,UAAM,OACJ,OAAO,MAAM,SAAS,WAClB,iBAAiB,UAAU,EAAE,KAAK,MAAM,IAAI,KAAK,MAAM,IAAI,IAC3D,MAAM;AAEZ,UAAM,cACJ,OAAO,MAAM,gBAAgB,WACzB;AAAA,MACE,UAAU,EAAE,KAAK,MAAM,WAAW,KAAK,MAAM;AAAA,IAC/C,IACA,MAAM,eAAe;AAE3B,WACE;AAAA,MAAC;AAAA;AAAA,QACE,GAAG;AAAA,QACJ;AAAA,QACA;AAAA,QACA;AAAA;AAAA,IACF;AAAA,EAEJ;AAEA,SAAO;AACT;",
5
+ "names": []
6
+ }
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=IconProps.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "mappings": "",
5
+ "names": []
6
+ }
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=IconProps.mjs.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": [],
4
+ "mappings": "",
5
+ "names": []
6
+ }
@@ -0,0 +1,3 @@
1
+ export * from "./IconProps";
2
+ export * from "./themed";
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.ts"],
4
+ "mappings": "AAAA,cAAc;AACd,cAAc;",
5
+ "names": []
6
+ }
@@ -0,0 +1,3 @@
1
+ export * from "./IconProps";
2
+ export * from "./themed";
3
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/index.ts"],
4
+ "mappings": "AAAA,cAAc;AACd,cAAc;",
5
+ "names": []
6
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ getTokens,
3
+ getVariable,
4
+ getVariableValue,
5
+ useProps,
6
+ useTheme
7
+ } from "@tamagui/core";
8
+ function themed(Component) {
9
+ const wrapped = (propsIn) => {
10
+ const props = useProps(propsIn);
11
+ const theme = useTheme();
12
+ const defaultColor = props.color ?? "black";
13
+ const color = getVariable(
14
+ (defaultColor in theme ? theme[defaultColor] : void 0) || props.color || (!props.disableTheme ? theme.color : null) || "#000"
15
+ );
16
+ const size = typeof props.size === "string" ? getVariableValue(getTokens().size[props.size] || props.size) : props.size;
17
+ const strokeWidth = typeof props.strokeWidth === "string" ? getVariableValue(
18
+ getTokens().size[props.strokeWidth] || props.strokeWidth
19
+ ) : props.strokeWidth ?? "2";
20
+ return <Component
21
+ {...props}
22
+ color={color}
23
+ size={size}
24
+ strokeWidth={strokeWidth}
25
+ />;
26
+ };
27
+ return wrapped;
28
+ }
29
+ export {
30
+ themed
31
+ };
32
+ //# sourceMappingURL=themed.js.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/themed.tsx"],
4
+ "mappings": "AAAA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAIA,SAAS,OAAO,WAAgC;AACrD,QAAM,UAAU,CAAC,YAAuB;AACtC,UAAM,QAAQ,SAAS,OAAO;AAC9B,UAAM,QAAQ,SAAS;AAEvB,UAAM,eAAe,MAAM,SAAS;AAEpC,UAAM,QAAQ;AAAA,OACX,gBAAgB,QAAQ,MAAM,YAAY,IAAI,WAC7C,MAAM,UACL,CAAC,MAAM,eAAe,MAAM,QAAQ,SACrC;AAAA,IACJ;AAEA,UAAM,OACJ,OAAO,MAAM,SAAS,WAClB,iBAAiB,UAAU,EAAE,KAAK,MAAM,IAAI,KAAK,MAAM,IAAI,IAC3D,MAAM;AAEZ,UAAM,cACJ,OAAO,MAAM,gBAAgB,WACzB;AAAA,MACE,UAAU,EAAE,KAAK,MAAM,WAAW,KAAK,MAAM;AAAA,IAC/C,IACA,MAAM,eAAe;AAE3B,WACE,CAAC;AAAA,UACK;AAAA,MACJ,OAAO;AAAA,MACP,MAAM;AAAA,MACN,aAAa;AAAA,IACf;AAAA,EAEJ;AAEA,SAAO;AACT;",
5
+ "names": []
6
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ getTokens,
3
+ getVariable,
4
+ getVariableValue,
5
+ useProps,
6
+ useTheme
7
+ } from "@tamagui/core";
8
+ function themed(Component) {
9
+ const wrapped = (propsIn) => {
10
+ const props = useProps(propsIn);
11
+ const theme = useTheme();
12
+ const defaultColor = props.color ?? "black";
13
+ const color = getVariable(
14
+ (defaultColor in theme ? theme[defaultColor] : void 0) || props.color || (!props.disableTheme ? theme.color : null) || "#000"
15
+ );
16
+ const size = typeof props.size === "string" ? getVariableValue(getTokens().size[props.size] || props.size) : props.size;
17
+ const strokeWidth = typeof props.strokeWidth === "string" ? getVariableValue(
18
+ getTokens().size[props.strokeWidth] || props.strokeWidth
19
+ ) : props.strokeWidth ?? "2";
20
+ return <Component
21
+ {...props}
22
+ color={color}
23
+ size={size}
24
+ strokeWidth={strokeWidth}
25
+ />;
26
+ };
27
+ return wrapped;
28
+ }
29
+ export {
30
+ themed
31
+ };
32
+ //# sourceMappingURL=themed.mjs.map
@@ -0,0 +1,6 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/themed.tsx"],
4
+ "mappings": "AAAA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AAIA,SAAS,OAAO,WAAgC;AACrD,QAAM,UAAU,CAAC,YAAuB;AACtC,UAAM,QAAQ,SAAS,OAAO;AAC9B,UAAM,QAAQ,SAAS;AAEvB,UAAM,eAAe,MAAM,SAAS;AAEpC,UAAM,QAAQ;AAAA,OACX,gBAAgB,QAAQ,MAAM,YAAY,IAAI,WAC7C,MAAM,UACL,CAAC,MAAM,eAAe,MAAM,QAAQ,SACrC;AAAA,IACJ;AAEA,UAAM,OACJ,OAAO,MAAM,SAAS,WAClB,iBAAiB,UAAU,EAAE,KAAK,MAAM,IAAI,KAAK,MAAM,IAAI,IAC3D,MAAM;AAEZ,UAAM,cACJ,OAAO,MAAM,gBAAgB,WACzB;AAAA,MACE,UAAU,EAAE,KAAK,MAAM,WAAW,KAAK,MAAM;AAAA,IAC/C,IACA,MAAM,eAAe;AAE3B,WACE,CAAC;AAAA,UACK;AAAA,MACJ,OAAO;AAAA,MACP,MAAM;AAAA,MACN,aAAa;AAAA,IACf;AAAA,EAEJ;AAEA,SAAO;AACT;",
5
+ "names": []
6
+ }
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@tamagui/helpers-icon",
3
+ "version": "1.33.1",
4
+ "sideEffects": false,
5
+ "description": "Utilities for icon packages",
6
+ "source": "src/index.ts",
7
+ "types": "./types/index.d.ts",
8
+ "main": "dist/cjs",
9
+ "module": "dist/esm",
10
+ "module:jsx": "dist/jsx",
11
+ "files": [
12
+ "src",
13
+ "types",
14
+ "dist"
15
+ ],
16
+ "scripts": {
17
+ "build": "tamagui-build",
18
+ "watch": "tamagui-build --watch",
19
+ "clean": "tamagui-build clean",
20
+ "clean:build": "tamagui-build clean:build"
21
+ },
22
+ "license": "MIT",
23
+ "dependencies": {
24
+ "@tamagui/core": "1.33.1"
25
+ },
26
+ "peerDependencies": {
27
+ "react": "*",
28
+ "react-native-svg": ">=12"
29
+ },
30
+ "devDependencies": {
31
+ "@tamagui/build": "1.33.1",
32
+ "react": "^18.2.0",
33
+ "react-native-svg": "13.4.0"
34
+ }
35
+ }
@@ -0,0 +1,12 @@
1
+ import { ColorTokens, SizeTokens, ThemeTokens } from "@tamagui/core";
2
+ import { SvgProps } from "react-native-svg";
3
+
4
+ export type BaseIconProps = {
5
+ size?: number | SizeTokens;
6
+ strokeWidth?: number | SizeTokens;
7
+ color?: (ColorTokens | ThemeTokens | (string & {})) | null;
8
+ disableTheme?: boolean;
9
+ style?: any;
10
+ };
11
+
12
+ export type IconProps = SvgProps & BaseIconProps;
package/src/index.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from "./IconProps";
2
+ export * from "./themed";
package/src/themed.tsx ADDED
@@ -0,0 +1,48 @@
1
+ import {
2
+ getTokens,
3
+ getVariable,
4
+ getVariableValue,
5
+ useProps,
6
+ useTheme,
7
+ } from "@tamagui/core";
8
+ import React from "react";
9
+ import { IconProps } from "./IconProps";
10
+
11
+ export function themed(Component: React.FC<IconProps>) {
12
+ const wrapped = (propsIn: IconProps) => {
13
+ const props = useProps(propsIn);
14
+ const theme = useTheme();
15
+
16
+ const defaultColor = props.color ?? "black";
17
+
18
+ const color = getVariable(
19
+ (defaultColor in theme ? theme[defaultColor] : undefined) ||
20
+ props.color ||
21
+ (!props.disableTheme ? theme.color : null) ||
22
+ "#000"
23
+ );
24
+
25
+ const size =
26
+ typeof props.size === "string"
27
+ ? getVariableValue(getTokens().size[props.size] || props.size)
28
+ : props.size;
29
+
30
+ const strokeWidth =
31
+ typeof props.strokeWidth === "string"
32
+ ? getVariableValue(
33
+ getTokens().size[props.strokeWidth] || props.strokeWidth
34
+ )
35
+ : props.strokeWidth ?? "2";
36
+
37
+ return (
38
+ <Component
39
+ {...props}
40
+ color={color}
41
+ size={size}
42
+ strokeWidth={strokeWidth}
43
+ />
44
+ );
45
+ };
46
+
47
+ return wrapped;
48
+ }
@@ -0,0 +1,11 @@
1
+ import { ColorTokens, SizeTokens, ThemeTokens } from "@tamagui/core";
2
+ import { SvgProps } from "react-native-svg";
3
+ export type BaseIconProps = {
4
+ size?: number | SizeTokens;
5
+ strokeWidth?: number | SizeTokens;
6
+ color?: (ColorTokens | ThemeTokens | (string & {})) | null;
7
+ disableTheme?: boolean;
8
+ style?: any;
9
+ };
10
+ export type IconProps = SvgProps & BaseIconProps;
11
+ //# sourceMappingURL=IconProps.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IconProps.d.ts","sourceRoot":"","sources":["../src/IconProps.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACrE,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,MAAM,MAAM,aAAa,GAAG;IAC1B,IAAI,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC;IAC3B,WAAW,CAAC,EAAE,MAAM,GAAG,UAAU,CAAC;IAClC,KAAK,CAAC,EAAE,CAAC,WAAW,GAAG,WAAW,GAAG,CAAC,MAAM,GAAG,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC;IAC3D,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,KAAK,CAAC,EAAE,GAAG,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG,QAAQ,GAAG,aAAa,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from "./IconProps";
2
+ export * from "./themed";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC"}
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IconProps } from "./IconProps";
3
+ export declare function themed(Component: React.FC<IconProps>): (propsIn: IconProps) => JSX.Element;
4
+ //# sourceMappingURL=themed.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"themed.d.ts","sourceRoot":"","sources":["../src/themed.tsx"],"names":[],"mappings":"AAOA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAExC,wBAAgB,MAAM,CAAC,SAAS,EAAE,KAAK,CAAC,EAAE,CAAC,SAAS,CAAC,aACzB,SAAS,iBAoCpC"}