@central-icons-react-native/round-filled-radius-0-stroke-1 1.1.270 → 1.1.271

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,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHandTouch: FC<CentralIconBaseProps>;
4
+ export default IconHandTouch;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:v,defineProperty:n,getOwnPropertyNames:u,getOwnPropertyDescriptor:H}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?y??=new WeakMap:F??=new WeakMap,c=s.get(r);if(c)return c}C=r!=null?h(v(r)):{};let e=o||!r||!r.__esModule?n(C,"default",{value:r,enumerable:!0}):C;for(let l of u(r))if(!i.call(e,l))n(e,l,{get:B.bind(r,l),enumerable:!0});if(t)s.set(r,e);return e},x=(r)=>{var o=(f??=new WeakMap).get(r),C;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!i.call(o,t))n(o,t,{get:B.bind(r,t),enumerable:!(C=H(r,t))||C.enumerable})}return f.set(r,o),o},f;var L=(r)=>r;function S(r,o){this[r]=L.bind(null,o)}var P=(r,o)=>{for(var C in o)n(r,C,{get:o[C],enumerable:!0,configurable:!0,set:S.bind(o,C)})};var b={};P(b,{CentralIconBase:()=>a});module.exports=x(b);var g=I(require("react")),V=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return g.default.createElement(V.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var w={};P(w,{default:()=>M,IconHandTouch:()=>d});module.exports=x(w);var p=I(require("react"));var m=require("react-native-svg"),d=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M20 3C20.5523 3 21 3.44772 21 4V13.626C20.1987 13.1726 19.0173 12.715 18.041 12.4229V10.0488C18.0408 8.49031 16.7772 7.2269 15.2188 7.22656C13.66 7.22656 12.3957 8.4901 12.3955 10.0488V13.3828L12.2197 13.3066C11.4171 12.9558 10.4877 13.056 9.77734 13.5684C8.62807 14.398 8.47806 15.9115 9.14648 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"}))},M=d;
2
+
3
+ //# debugId=11F36A3182A6012264756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconHandTouch/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHandTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V13.626C20.1987 13.1726 19.0173 12.715 18.041 12.4229V10.0488C18.0408 8.49031 16.7772 7.2269 15.2188 7.22656C13.66 7.22656 12.3957 8.4901 12.3955 10.0488V13.3828L12.2197 13.3066C11.4171 12.9558 10.4877 13.056 9.77734 13.5684C8.62807 14.398 8.47806 15.9115 9.14648 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHandTouch;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,yECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA0C,CAAC,IAAU,CAChE,OAAO,wBAAywC,EAAzwC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,20BAA20B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,CAAI,GAGnwC",
9
+ "debugId": "11F36A3182A6012264756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import p from"react";import{Svg as l}from"react-native-svg";var t=({children:o,size:r=24,...e})=>{return p.createElement(l,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as n}from"react-native-svg";var a=(o)=>{return C.createElement(t,{...o},C.createElement(n,{d:"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z",fill:"currentColor"}),C.createElement(n,{d:"M20 3C20.5523 3 21 3.44772 21 4V13.626C20.1987 13.1726 19.0173 12.715 18.041 12.4229V10.0488C18.0408 8.49031 16.7772 7.2269 15.2188 7.22656C13.66 7.22656 12.3957 8.4901 12.3955 10.0488V13.3828L12.2197 13.3066C11.4171 12.9558 10.4877 13.056 9.77734 13.5684C8.62807 14.398 8.47806 15.9115 9.14648 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"}))},g=a;export{g as default,a as IconHandTouch};
2
+
3
+ //# debugId=CEA6C79B07A19C8064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconHandTouch/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconHandTouch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z\" fill=\"currentColor\"/><Path d=\"M20 3C20.5523 3 21 3.44772 21 4V13.626C20.1987 13.1726 19.0173 12.715 18.041 12.4229V10.0488C18.0408 8.49031 16.7772 7.2269 15.2188 7.22656C13.66 7.22656 12.3957 8.4901 12.3955 10.0488V13.3828L12.2197 13.3066C11.4171 12.9558 10.4877 13.056 9.77734 13.5684C8.62807 14.398 8.47806 15.9115 9.14648 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHandTouch;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAywC,EAAzwC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,20BAA20B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,CAAI,GAGnwC",
9
+ "debugId": "CEA6C79B07A19C8064756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var M=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:Z}=Object,u=Object.prototype.hasOwnProperty;function L(r){return this[r]}var h,y,d=(r,C,o)=>{var n=r!=null&&typeof r==="object";if(n){var m=C?h??=new WeakMap:y??=new WeakMap,s=m.get(r);if(s)return s}o=r!=null?M(v(r)):{};let p=C||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o;for(let f of c(r))if(!u.call(p,f))l(p,f,{get:L.bind(r,f),enumerable:!0});if(n)m.set(r,p);return p},B=(r)=>{var C=(i??=new WeakMap).get(r),o;if(C)return C;if(C=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!u.call(C,n))l(C,n,{get:L.bind(r,n),enumerable:!(o=Z(r,n))||o.enumerable})}return i.set(r,C),C},i;var F=(r)=>r;function S(r,C){this[r]=F.bind(null,C)}var I=(r,C)=>{for(var o in C)l(r,o,{get:C[o],enumerable:!0,configurable:!0,set:S.bind(C,o)})};var b={};I(b,{CentralIconBase:()=>a});module.exports=B(b);var g=d(require("react")),x=require("react-native-svg"),a=({children:r,size:C=24,...o})=>{return g.default.createElement(x.Svg,{...o,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r)};var w={};I(w,{default:()=>$,IconMagicHands:()=>P});module.exports=B(w);var t=d(require("react"));var e=require("react-native-svg"),P=(r)=>{return t.default.createElement(a,{...r},t.default.createElement(e.Path,{d:"M12.0001 4C8.7004 4 5.86615 5.99787 4.64319 8.85197C4.53442 9.10579 4.24049 9.22338 3.98667 9.11462C3.73285 9.00586 3.61525 8.71193 3.72401 8.45811C5.09892 5.2494 8.28627 3 12.0001 3C15.714 3 18.9014 5.2494 20.2763 8.45811C20.385 8.71193 20.2674 9.00586 20.0136 9.11462C19.7598 9.22338 19.4659 9.10579 19.3571 8.85197C18.1341 5.99787 15.2999 4 12.0001 4Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M12.0001 6C9.59999 6 7.52798 7.40929 6.56836 9.44772C6.45074 9.69756 6.15285 9.80475 5.90301 9.68713C5.65317 9.56951 5.54598 9.27163 5.6636 9.02179C6.78199 6.64611 9.19832 5 12.0001 5C14.802 5 17.2183 6.64611 18.3367 9.02179C18.4543 9.27163 18.3471 9.56951 18.0973 9.68713C17.8474 9.80475 17.5495 9.69756 17.4319 9.44772C16.4723 7.40929 14.4003 6 12.0001 6Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M12.0001 8C10.4951 8 9.18346 8.831 8.50026 10.0616C8.36622 10.303 8.06185 10.3901 7.82042 10.256C7.57899 10.122 7.49193 9.81762 7.62597 9.57619C8.47835 8.04087 10.1173 7 12.0001 7C13.8829 7 15.5219 8.04087 16.3743 9.57619C16.5084 9.81762 16.4213 10.122 16.1799 10.256C15.9384 10.3901 15.6341 10.303 15.5 10.0616C14.8168 8.831 13.5052 8 12.0001 8Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.834 13.7236L14.6594 13.2961C14.3999 13.2017 14.113 13.3355 14.0185 13.595L13.4811 15.0716C12.8199 16.888 13.7565 18.8965 15.5729 19.5576L16.5126 19.8996C18.329 20.5608 20.3375 19.6242 20.9986 17.8078L21.8109 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5707Z",fill:"currentColor"}))},$=P;
1
+ var M=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:Z}=Object,u=Object.prototype.hasOwnProperty;function L(r){return this[r]}var h,y,d=(r,C,o)=>{var n=r!=null&&typeof r==="object";if(n){var m=C?h??=new WeakMap:y??=new WeakMap,s=m.get(r);if(s)return s}o=r!=null?M(v(r)):{};let p=C||!r||!r.__esModule?l(o,"default",{value:r,enumerable:!0}):o;for(let f of c(r))if(!u.call(p,f))l(p,f,{get:L.bind(r,f),enumerable:!0});if(n)m.set(r,p);return p},B=(r)=>{var C=(i??=new WeakMap).get(r),o;if(C)return C;if(C=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of c(r))if(!u.call(C,n))l(C,n,{get:L.bind(r,n),enumerable:!(o=Z(r,n))||o.enumerable})}return i.set(r,C),C},i;var F=(r)=>r;function S(r,C){this[r]=F.bind(null,C)}var I=(r,C)=>{for(var o in C)l(r,o,{get:C[o],enumerable:!0,configurable:!0,set:S.bind(C,o)})};var b={};I(b,{CentralIconBase:()=>a});module.exports=B(b);var g=d(require("react")),x=require("react-native-svg"),a=({children:r,size:C=24,...o})=>{return g.default.createElement(x.Svg,{...o,width:typeof C==="number"?`${C}px`:C,height:typeof C==="number"?`${C}px`:C,viewBox:"0 0 24 24",fill:"none"},r)};var w={};I(w,{default:()=>$,IconMagicHands:()=>P});module.exports=B(w);var t=d(require("react"));var e=require("react-native-svg"),P=(r)=>{return t.default.createElement(a,{...r},t.default.createElement(e.Path,{d:"M12.0003 4C8.70052 4 5.86627 5.99787 4.64331 8.85197C4.53455 9.10579 4.24062 9.22338 3.98679 9.11462C3.73297 9.00586 3.61538 8.71193 3.72414 8.45811C5.09904 5.2494 8.2864 3 12.0003 3C15.7141 3 18.9015 5.2494 20.2764 8.45811C20.3851 8.71193 20.2676 9.00586 20.0137 9.11462C19.7599 9.22338 19.466 9.10579 19.3572 8.85197C18.1343 5.99787 15.3 4 12.0003 4Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M12.0015 6C9.60131 6 7.52931 7.40929 6.56968 9.44772C6.45207 9.69756 6.15418 9.80475 5.90434 9.68713C5.6545 9.56951 5.54731 9.27163 5.66493 9.02179C6.78331 6.64611 9.19965 5 12.0015 5C14.8033 5 17.2196 6.64611 18.338 9.02179C18.4556 9.27163 18.3484 9.56951 18.0986 9.68713C17.8488 9.80475 17.5509 9.69756 17.4333 9.44772C16.4736 7.40929 14.4016 6 12.0015 6Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M11.9996 8C10.4946 8 9.18294 8.831 8.49974 10.0616C8.3657 10.303 8.06132 10.3901 7.81989 10.256C7.57846 10.122 7.49141 9.81762 7.62544 9.57619C8.47783 8.04087 10.1168 7 11.9996 7C13.8824 7 15.5214 8.04087 16.3738 9.57619C16.5078 9.81762 16.4208 10.122 16.1793 10.256C15.9379 10.3901 15.6335 10.303 15.4995 10.0616C14.8163 8.831 13.5047 8 11.9996 8Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.6599 13.2961C14.4004 13.2017 14.1135 13.3355 14.019 13.595L13.4816 15.0716C12.8204 16.888 13.757 18.8965 15.5734 19.5576L16.5131 19.8996C18.3295 20.5608 20.338 19.6242 20.9991 17.8078L21.8114 15.576C22.4017 13.9542 21.5655 12.1609 19.9437 11.5707Z",fill:"currentColor"}))},$=P;
2
2
 
3
- //# debugId=55681518A415ED3064756E2164756E21
3
+ //# debugId=89AC023B7EE88C7B64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicHands/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMagicHands: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.0001 4C8.7004 4 5.86615 5.99787 4.64319 8.85197C4.53442 9.10579 4.24049 9.22338 3.98667 9.11462C3.73285 9.00586 3.61525 8.71193 3.72401 8.45811C5.09892 5.2494 8.28627 3 12.0001 3C15.714 3 18.9014 5.2494 20.2763 8.45811C20.385 8.71193 20.2674 9.00586 20.0136 9.11462C19.7598 9.22338 19.4659 9.10579 19.3571 8.85197C18.1341 5.99787 15.2999 4 12.0001 4Z\" fill=\"currentColor\"/><Path d=\"M12.0001 6C9.59999 6 7.52798 7.40929 6.56836 9.44772C6.45074 9.69756 6.15285 9.80475 5.90301 9.68713C5.65317 9.56951 5.54598 9.27163 5.6636 9.02179C6.78199 6.64611 9.19832 5 12.0001 5C14.802 5 17.2183 6.64611 18.3367 9.02179C18.4543 9.27163 18.3471 9.56951 18.0973 9.68713C17.8474 9.80475 17.5495 9.69756 17.4319 9.44772C16.4723 7.40929 14.4003 6 12.0001 6Z\" fill=\"currentColor\"/><Path d=\"M12.0001 8C10.4951 8 9.18346 8.831 8.50026 10.0616C8.36622 10.303 8.06185 10.3901 7.82042 10.256C7.57899 10.122 7.49193 9.81762 7.62597 9.57619C8.47835 8.04087 10.1173 7 12.0001 7C13.8829 7 15.5219 8.04087 16.3743 9.57619C16.5084 9.81762 16.4213 10.122 16.1799 10.256C15.9384 10.3901 15.6341 10.303 15.5 10.0616C14.8168 8.831 13.5052 8 12.0001 8Z\" fill=\"currentColor\"/><Path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><Path d=\"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.834 13.7236L14.6594 13.2961C14.3999 13.2017 14.113 13.3355 14.0185 13.595L13.4811 15.0716C12.8199 16.888 13.7565 18.8965 15.5729 19.5576L16.5126 19.8996C18.329 20.5608 20.3375 19.6242 20.9986 17.8078L21.8109 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5707Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMagicHands: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.0003 4C8.70052 4 5.86627 5.99787 4.64331 8.85197C4.53455 9.10579 4.24062 9.22338 3.98679 9.11462C3.73297 9.00586 3.61538 8.71193 3.72414 8.45811C5.09904 5.2494 8.2864 3 12.0003 3C15.7141 3 18.9015 5.2494 20.2764 8.45811C20.3851 8.71193 20.2676 9.00586 20.0137 9.11462C19.7599 9.22338 19.466 9.10579 19.3572 8.85197C18.1343 5.99787 15.3 4 12.0003 4Z\" fill=\"currentColor\"/><Path d=\"M12.0015 6C9.60131 6 7.52931 7.40929 6.56968 9.44772C6.45207 9.69756 6.15418 9.80475 5.90434 9.68713C5.6545 9.56951 5.54731 9.27163 5.66493 9.02179C6.78331 6.64611 9.19965 5 12.0015 5C14.8033 5 17.2196 6.64611 18.338 9.02179C18.4556 9.27163 18.3484 9.56951 18.0986 9.68713C17.8488 9.80475 17.5509 9.69756 17.4333 9.44772C16.4736 7.40929 14.4016 6 12.0015 6Z\" fill=\"currentColor\"/><Path d=\"M11.9996 8C10.4946 8 9.18294 8.831 8.49974 10.0616C8.3657 10.303 8.06132 10.3901 7.81989 10.256C7.57846 10.122 7.49141 9.81762 7.62544 9.57619C8.47783 8.04087 10.1168 7 11.9996 7C13.8824 7 15.5214 8.04087 16.3738 9.57619C16.5078 9.81762 16.4208 10.122 16.1793 10.256C15.9379 10.3901 15.6335 10.303 15.4995 10.0616C14.8163 8.831 13.5047 8 11.9996 8Z\" fill=\"currentColor\"/><Path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><Path d=\"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.6599 13.2961C14.4004 13.2017 14.1135 13.3355 14.019 13.595L13.4816 15.0716C12.8204 16.888 13.757 18.8965 15.5734 19.5576L16.5131 19.8996C18.3295 20.5608 20.338 19.6242 20.9991 17.8078L21.8114 15.576C22.4017 13.9542 21.5655 12.1609 19.9437 11.5707Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
7
7
  ],
8
- "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAAo3D,EAAp3D,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qWAAqW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6VAA6V,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6UAA6U,KAAK,eAAc,CAAI,GAG92D",
9
- "debugId": "55681518A415ED3064756E2164756E21",
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,0ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA2C,CAAC,IAAU,CACjE,OAAO,wBAAq3D,EAAr3D,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mWAAmW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+VAA+V,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,CAAI,GAG/2D",
9
+ "debugId": "89AC023B7EE88C7B64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...e})=>{return l.createElement(p,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n)};import C from"react";import{Path as o}from"react-native-svg";var f=(n)=>{return C.createElement(t,{...n},C.createElement(o,{d:"M12.0001 4C8.7004 4 5.86615 5.99787 4.64319 8.85197C4.53442 9.10579 4.24049 9.22338 3.98667 9.11462C3.73285 9.00586 3.61525 8.71193 3.72401 8.45811C5.09892 5.2494 8.28627 3 12.0001 3C15.714 3 18.9014 5.2494 20.2763 8.45811C20.385 8.71193 20.2674 9.00586 20.0136 9.11462C19.7598 9.22338 19.4659 9.10579 19.3571 8.85197C18.1341 5.99787 15.2999 4 12.0001 4Z",fill:"currentColor"}),C.createElement(o,{d:"M12.0001 6C9.59999 6 7.52798 7.40929 6.56836 9.44772C6.45074 9.69756 6.15285 9.80475 5.90301 9.68713C5.65317 9.56951 5.54598 9.27163 5.6636 9.02179C6.78199 6.64611 9.19832 5 12.0001 5C14.802 5 17.2183 6.64611 18.3367 9.02179C18.4543 9.27163 18.3471 9.56951 18.0973 9.68713C17.8474 9.80475 17.5495 9.69756 17.4319 9.44772C16.4723 7.40929 14.4003 6 12.0001 6Z",fill:"currentColor"}),C.createElement(o,{d:"M12.0001 8C10.4951 8 9.18346 8.831 8.50026 10.0616C8.36622 10.303 8.06185 10.3901 7.82042 10.256C7.57899 10.122 7.49193 9.81762 7.62597 9.57619C8.47835 8.04087 10.1173 7 12.0001 7C13.8829 7 15.5219 8.04087 16.3743 9.57619C16.5084 9.81762 16.4213 10.122 16.1799 10.256C15.9384 10.3901 15.6341 10.303 15.5 10.0616C14.8168 8.831 13.5052 8 12.0001 8Z",fill:"currentColor"}),C.createElement(o,{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),C.createElement(o,{d:"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.834 13.7236L14.6594 13.2961C14.3999 13.2017 14.113 13.3355 14.0185 13.595L13.4811 15.0716C12.8199 16.888 13.7565 18.8965 15.5729 19.5576L16.5126 19.8996C18.329 20.5608 20.3375 19.6242 20.9986 17.8078L21.8109 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5707Z",fill:"currentColor"}))},g=f;export{g as default,f as IconMagicHands};
1
+ import l from"react";import{Svg as p}from"react-native-svg";var t=({children:n,size:r=24,...e})=>{return l.createElement(p,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n)};import C from"react";import{Path as o}from"react-native-svg";var f=(n)=>{return C.createElement(t,{...n},C.createElement(o,{d:"M12.0003 4C8.70052 4 5.86627 5.99787 4.64331 8.85197C4.53455 9.10579 4.24062 9.22338 3.98679 9.11462C3.73297 9.00586 3.61538 8.71193 3.72414 8.45811C5.09904 5.2494 8.2864 3 12.0003 3C15.7141 3 18.9015 5.2494 20.2764 8.45811C20.3851 8.71193 20.2676 9.00586 20.0137 9.11462C19.7599 9.22338 19.466 9.10579 19.3572 8.85197C18.1343 5.99787 15.3 4 12.0003 4Z",fill:"currentColor"}),C.createElement(o,{d:"M12.0015 6C9.60131 6 7.52931 7.40929 6.56968 9.44772C6.45207 9.69756 6.15418 9.80475 5.90434 9.68713C5.6545 9.56951 5.54731 9.27163 5.66493 9.02179C6.78331 6.64611 9.19965 5 12.0015 5C14.8033 5 17.2196 6.64611 18.338 9.02179C18.4556 9.27163 18.3484 9.56951 18.0986 9.68713C17.8488 9.80475 17.5509 9.69756 17.4333 9.44772C16.4736 7.40929 14.4016 6 12.0015 6Z",fill:"currentColor"}),C.createElement(o,{d:"M11.9996 8C10.4946 8 9.18294 8.831 8.49974 10.0616C8.3657 10.303 8.06132 10.3901 7.81989 10.256C7.57846 10.122 7.49141 9.81762 7.62544 9.57619C8.47783 8.04087 10.1168 7 11.9996 7C13.8824 7 15.5214 8.04087 16.3738 9.57619C16.5078 9.81762 16.4208 10.122 16.1793 10.256C15.9379 10.3901 15.6335 10.303 15.4995 10.0616C14.8163 8.831 13.5047 8 11.9996 8Z",fill:"currentColor"}),C.createElement(o,{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),C.createElement(o,{d:"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.6599 13.2961C14.4004 13.2017 14.1135 13.3355 14.019 13.595L13.4816 15.0716C12.8204 16.888 13.757 18.8965 15.5734 19.5576L16.5131 19.8996C18.3295 20.5608 20.338 19.6242 20.9991 17.8078L21.8114 15.576C22.4017 13.9542 21.5655 12.1609 19.9437 11.5707Z",fill:"currentColor"}))},g=f;export{g as default,f as IconMagicHands};
2
2
 
3
- //# debugId=DE292ABEFF7DC08764756E2164756E21
3
+ //# debugId=1781820483214CE264756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicHands/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMagicHands: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.0001 4C8.7004 4 5.86615 5.99787 4.64319 8.85197C4.53442 9.10579 4.24049 9.22338 3.98667 9.11462C3.73285 9.00586 3.61525 8.71193 3.72401 8.45811C5.09892 5.2494 8.28627 3 12.0001 3C15.714 3 18.9014 5.2494 20.2763 8.45811C20.385 8.71193 20.2674 9.00586 20.0136 9.11462C19.7598 9.22338 19.4659 9.10579 19.3571 8.85197C18.1341 5.99787 15.2999 4 12.0001 4Z\" fill=\"currentColor\"/><Path d=\"M12.0001 6C9.59999 6 7.52798 7.40929 6.56836 9.44772C6.45074 9.69756 6.15285 9.80475 5.90301 9.68713C5.65317 9.56951 5.54598 9.27163 5.6636 9.02179C6.78199 6.64611 9.19832 5 12.0001 5C14.802 5 17.2183 6.64611 18.3367 9.02179C18.4543 9.27163 18.3471 9.56951 18.0973 9.68713C17.8474 9.80475 17.5495 9.69756 17.4319 9.44772C16.4723 7.40929 14.4003 6 12.0001 6Z\" fill=\"currentColor\"/><Path d=\"M12.0001 8C10.4951 8 9.18346 8.831 8.50026 10.0616C8.36622 10.303 8.06185 10.3901 7.82042 10.256C7.57899 10.122 7.49193 9.81762 7.62597 9.57619C8.47835 8.04087 10.1173 7 12.0001 7C13.8829 7 15.5219 8.04087 16.3743 9.57619C16.5084 9.81762 16.4213 10.122 16.1799 10.256C15.9384 10.3901 15.6341 10.303 15.5 10.0616C14.8168 8.831 13.5052 8 12.0001 8Z\" fill=\"currentColor\"/><Path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><Path d=\"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.834 13.7236L14.6594 13.2961C14.3999 13.2017 14.113 13.3355 14.0185 13.595L13.4811 15.0716C12.8199 16.888 13.7565 18.8965 15.5729 19.5576L16.5126 19.8996C18.329 20.5608 20.3375 19.6242 20.9986 17.8078L21.8109 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5707Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconMagicHands: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M12.0003 4C8.70052 4 5.86627 5.99787 4.64331 8.85197C4.53455 9.10579 4.24062 9.22338 3.98679 9.11462C3.73297 9.00586 3.61538 8.71193 3.72414 8.45811C5.09904 5.2494 8.2864 3 12.0003 3C15.7141 3 18.9015 5.2494 20.2764 8.45811C20.3851 8.71193 20.2676 9.00586 20.0137 9.11462C19.7599 9.22338 19.466 9.10579 19.3572 8.85197C18.1343 5.99787 15.3 4 12.0003 4Z\" fill=\"currentColor\"/><Path d=\"M12.0015 6C9.60131 6 7.52931 7.40929 6.56968 9.44772C6.45207 9.69756 6.15418 9.80475 5.90434 9.68713C5.6545 9.56951 5.54731 9.27163 5.66493 9.02179C6.78331 6.64611 9.19965 5 12.0015 5C14.8033 5 17.2196 6.64611 18.338 9.02179C18.4556 9.27163 18.3484 9.56951 18.0986 9.68713C17.8488 9.80475 17.5509 9.69756 17.4333 9.44772C16.4736 7.40929 14.4016 6 12.0015 6Z\" fill=\"currentColor\"/><Path d=\"M11.9996 8C10.4946 8 9.18294 8.831 8.49974 10.0616C8.3657 10.303 8.06132 10.3901 7.81989 10.256C7.57846 10.122 7.49141 9.81762 7.62544 9.57619C8.47783 8.04087 10.1168 7 11.9996 7C13.8824 7 15.5214 8.04087 16.3738 9.57619C16.5078 9.81762 16.4208 10.122 16.1793 10.256C15.9379 10.3901 15.6335 10.303 15.4995 10.0616C14.8163 8.831 13.5047 8 11.9996 8Z\" fill=\"currentColor\"/><Path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.98169 13.595C9.88724 13.3355 9.60032 13.2017 9.34083 13.2961L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><Path d=\"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.6599 13.2961C14.4004 13.2017 14.1135 13.3355 14.019 13.595L13.4816 15.0716C12.8204 16.888 13.757 18.8965 15.5734 19.5576L16.5131 19.8996C18.3295 20.5608 20.338 19.6242 20.9991 17.8078L21.8114 15.576C22.4017 13.9542 21.5655 12.1609 19.9437 11.5707Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
7
7
  ],
8
- "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAo3D,EAAp3D,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qWAAqW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6VAA6V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6UAA6U,KAAK,eAAc,CAAI,GAG92D",
9
- "debugId": "DE292ABEFF7DC08764756E2164756E21",
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAq3D,EAAr3D,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mWAAmW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+VAA+V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8UAA8U,KAAK,eAAc,CAAI,GAG/2D",
9
+ "debugId": "1781820483214CE264756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var g=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var F,S,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var c=o?F??=new WeakMap:S??=new WeakMap,f=c.get(r);if(f)return f}e=r!=null?g(h(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(C,l))t(C,l,{get:d.bind(r,l),enumerable:!0});if(n)c.set(r,C);return C},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))t(o,n,{get:d.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return s.set(r,o),o},s;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var M={};P(M,{CentralIconBase:()=>a});module.exports=I(M);var v=B(require("react")),x=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};P(Z,{default:()=>$,IconPinch:()=>L});module.exports=I(Z);var p=B(require("react"));var m=require("react-native-svg"),L=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.20344 7.0173C2.4614 7.11585 2.59063 7.40486 2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.2639C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30593C1.65648 7.04797 1.94548 6.91875 2.20344 7.0173Z",fill:"currentColor"}))},$=L;
1
+ var g=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var F,S,B=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var c=o?F??=new WeakMap:S??=new WeakMap,f=c.get(r);if(f)return f}e=r!=null?g(h(r)):{};let C=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(C,l))t(C,l,{get:d.bind(r,l),enumerable:!0});if(n)c.set(r,C);return C},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))t(o,n,{get:d.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return s.set(r,o),o},s;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var P=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var M={};P(M,{CentralIconBase:()=>a});module.exports=I(M);var v=B(require("react")),x=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};P(Z,{default:()=>$,IconPinch:()=>L});module.exports=I(Z);var p=B(require("react"));var m=require("react-native-svg"),L=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.20344 7.01731C2.4614 7.11586 2.59063 7.40487 2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.264C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.25311 1.55793 7.30595C1.65648 7.04799 1.94548 6.91876 2.20344 7.01731Z",fill:"currentColor"}))},$=L;
2
2
 
3
- //# debugId=4624847DF980A25564756E2164756E21
3
+ //# debugId=405656818D2A833E64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPinch/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPinch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.20344 7.0173C2.4614 7.11585 2.59063 7.40486 2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.2639C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30593C1.65648 7.04797 1.94548 6.91875 2.20344 7.0173Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPinch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.20344 7.01731C2.4614 7.11586 2.59063 7.40487 2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.264C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.25311 1.55793 7.30595C1.65648 7.04799 1.94548 6.91876 2.20344 7.01731Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
7
7
  ],
8
- "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAi4B,EAAj4B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kdAAkd,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iTAAiT,KAAK,eAAc,CAAI,GAG33B",
9
- "debugId": "4624847DF980A25564756E2164756E21",
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,qECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAsC,CAAC,IAAU,CAC5D,OAAO,wBAAm4B,EAAn4B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,kdAAkd,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mTAAmT,KAAK,eAAc,CAAI,GAG73B",
9
+ "debugId": "405656818D2A833E64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.20344 7.0173C2.4614 7.11585 2.59063 7.40486 2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.2639C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30593C1.65648 7.04797 1.94548 6.91875 2.20344 7.0173Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPinch};
1
+ import p from"react";import{Svg as l}from"react-native-svg";var n=({children:o,size:r=24,...C})=>{return p.createElement(l,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as t}from"react-native-svg";var a=(o)=>{return e.createElement(n,{...o},e.createElement(t,{d:"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M2.20344 7.01731C2.4614 7.11586 2.59063 7.40487 2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.264C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.25311 1.55793 7.30595C1.65648 7.04799 1.94548 6.91876 2.20344 7.01731Z",fill:"currentColor"}))},v=a;export{v as default,a as IconPinch};
2
2
 
3
- //# debugId=D3A86474EACE5FE964756E2164756E21
3
+ //# debugId=972662B0E9562D8F64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPinch/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPinch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.20344 7.0173C2.4614 7.11585 2.59063 7.40486 2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.2639C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30593C1.65648 7.04797 1.94548 6.91875 2.20344 7.0173Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPinch: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.20344 7.01731C2.4614 7.11586 2.59063 7.40487 2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184C2.59063 12.8764 2.4614 13.1654 2.20344 13.264C1.94548 13.3625 1.65648 13.2333 1.55793 12.9753C0.814025 11.0282 0.814025 9.25311 1.55793 7.30595C1.65648 7.04799 1.94548 6.91876 2.20344 7.01731Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
7
7
  ],
8
- "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAi4B,EAAj4B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kdAAkd,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iTAAiT,KAAK,eAAc,CAAI,GAG33B",
9
- "debugId": "D3A86474EACE5FE964756E2164756E21",
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAsC,CAAC,IAAU,CAC5D,OAAO,gBAAm4B,EAAn4B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,kdAAkd,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mTAAmT,KAAK,eAAc,CAAI,GAG73B",
9
+ "debugId": "972662B0E9562D8F64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var V=Object.create;var{getPrototypeOf:g,defineProperty:t,getOwnPropertyNames:f,getOwnPropertyDescriptor:M}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var S,Z,H=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?S??=new WeakMap:Z??=new WeakMap,c=m.get(r);if(c)return c}C=r!=null?V(g(r)):{};let n=o||!r||!r.__esModule?t(C,"default",{value:r,enumerable:!0}):C;for(let p of f(r))if(!i.call(n,p))t(n,p,{get:u.bind(r,p),enumerable:!0});if(e)m.set(r,n);return n},B=(r)=>{var o=(s??=new WeakMap).get(r),C;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!i.call(o,e))t(o,e,{get:u.bind(r,e),enumerable:!(C=M(r,e))||C.enumerable})}return s.set(r,o),o},s;var h=(r)=>r;function y(r,o){this[r]=h.bind(null,o)}var I=(r,o)=>{for(var C in o)t(r,C,{get:o[C],enumerable:!0,configurable:!0,set:y.bind(o,C)})};var F={};I(F,{CentralIconBase:()=>l});module.exports=B(F);var d=H(require("react")),v=require("react-native-svg"),l=({children:r,size:o=24,...C})=>{return d.default.createElement(v.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var L={};I(L,{default:()=>b,IconScript:()=>P});module.exports=B(L);var a=H(require("react"));var x=require("react-native-svg"),P=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21L15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536ZM10 7.5C10 7.22386 10.2239 7 10.5 7H13.5C13.7761 7 14 7.22386 14 7.5C14 7.77614 13.7761 8 13.5 8H10.5C10.2239 8 10 7.77614 10 7.5ZM10.5 10C10.2239 10 10 10.2239 10 10.5C10 10.7761 10.2239 11 10.5 11H12.5C12.7761 11 13 10.7761 13 10.5C13 10.2239 12.7761 10 12.5 10H10.5Z",fill:"currentColor"}))},b=P;
1
+ var P=Object.create;var{getPrototypeOf:V,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:g}=Object,s=Object.prototype.hasOwnProperty;function u(r){return this[r]}var M,S,L=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?M??=new WeakMap:S??=new WeakMap,H=m.get(r);if(H)return H}C=r!=null?P(V(r)):{};let l=o||!r||!r.__esModule?n(C,"default",{value:r,enumerable:!0}):C;for(let a of i(r))if(!s.call(l,a))n(l,a,{get:u.bind(r,a),enumerable:!0});if(e)m.set(r,l);return l},d=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of i(r))if(!s.call(o,e))n(o,e,{get:u.bind(r,e),enumerable:!(C=g(r,e))||C.enumerable})}return c.set(r,o),o},c;var Z=(r)=>r;function h(r,o){this[r]=Z.bind(null,o)}var B=(r,o)=>{for(var C in o)n(r,C,{get:o[C],enumerable:!0,configurable:!0,set:h.bind(o,C)})};var y={};B(y,{CentralIconBase:()=>f});module.exports=d(y);var I=L(require("react")),v=require("react-native-svg"),f=({children:r,size:o=24,...C})=>{return I.default.createElement(v.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var F={};B(F,{default:()=>b,IconScript:()=>x});module.exports=d(F);var t=L(require("react"));var p=require("react-native-svg"),x=(r)=>{return t.default.createElement(f,{...r},t.default.createElement(p.Path,{d:"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z",fill:"currentColor"}),t.default.createElement(p.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.88574 10.0137L9.77637 10.0527L8.88184 10.5H8.5C8.22386 10.5 8 10.7239 8 11C8 11.2761 8.22386 11.5 8.5 11.5H9C9.07762 11.5 9.15421 11.482 9.22363 11.4473L10 11.0586L10.7764 11.4473C10.8458 11.482 10.9224 11.5 11 11.5H13.5C13.7761 11.5 14 11.2761 14 11C14 10.7239 13.7761 10.5 13.5 10.5H11.1182L10.2236 10.0527C10.118 9.99991 9.99839 9.98721 9.88574 10.0137ZM9.88574 6.51367L9.77637 6.55273L8.88184 7H8.5C8.22386 7 8 7.22386 8 7.5C8 7.77614 8.22386 8 8.5 8H9C9.07762 8 9.15421 7.98198 9.22363 7.94727L10 7.55859L10.7764 7.94727C10.8458 7.98198 10.9224 8 11 8H13.5C13.7761 8 14 7.77614 14 7.5C14 7.22386 13.7761 7 13.5 7H11.1182L10.2236 6.55273C10.118 6.49991 9.99839 6.48721 9.88574 6.51367Z",fill:"currentColor"}),t.default.createElement(p.Path,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},b=x;
2
2
 
3
- //# debugId=7C127AB5D3F39E2B64756E2164756E21
3
+ //# debugId=EBB16E4E4CB9D9C664756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21L15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536ZM10 7.5C10 7.22386 10.2239 7 10.5 7H13.5C13.7761 7 14 7.22386 14 7.5C14 7.77614 13.7761 8 13.5 8H10.5C10.2239 8 10 7.77614 10 7.5ZM10.5 10C10.2239 10 10 10.2239 10 10.5C10 10.7761 10.2239 11 10.5 11H12.5C12.7761 11 13 10.7761 13 10.5C13 10.2239 12.7761 10 12.5 10H10.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.88574 10.0137L9.77637 10.0527L8.88184 10.5H8.5C8.22386 10.5 8 10.7239 8 11C8 11.2761 8.22386 11.5 8.5 11.5H9C9.07762 11.5 9.15421 11.482 9.22363 11.4473L10 11.0586L10.7764 11.4473C10.8458 11.482 10.9224 11.5 11 11.5H13.5C13.7761 11.5 14 11.2761 14 11C14 10.7239 13.7761 10.5 13.5 10.5H11.1182L10.2236 10.0527C10.118 9.99991 9.99839 9.98721 9.88574 10.0137ZM9.88574 6.51367L9.77637 6.55273L8.88184 7H8.5C8.22386 7 8 7.22386 8 7.5C8 7.77614 8.22386 8 8.5 8H9C9.07762 8 9.15421 7.98198 9.22363 7.94727L10 7.55859L10.7764 7.94727C10.8458 7.98198 10.9224 8 11 8H13.5C13.7761 8 14 7.77614 14 7.5C14 7.22386 13.7761 7 13.5 7H11.1182L10.2236 6.55273C10.118 6.49991 9.99839 6.48721 9.88574 6.51367Z\" fill=\"currentColor\"/><Path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
7
7
  ],
8
- "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,sECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAuC,CAAC,IAAU,CAC7D,OAAO,wBAA8iC,EAA9iC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,68BAA68B,KAAK,eAAc,CAAI,GAGxiC",
9
- "debugId": "7C127AB5D3F39E2B64756E2164756E21",
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,sECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAuC,CAAC,IAAU,CAC7D,OAAO,wBAA60C,EAA70C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uNAAuN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,q3BAAq3B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGv0C",
9
+ "debugId": "EBB16E4E4CB9D9C664756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import n from"react";import{Svg as p}from"react-native-svg";var C=({children:o,size:r=24,...t})=>{return n.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import e from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return e.createElement(C,{...o},e.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21L15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536ZM10 7.5C10 7.22386 10.2239 7 10.5 7H13.5C13.7761 7 14 7.22386 14 7.5C14 7.77614 13.7761 8 13.5 8H10.5C10.2239 8 10 7.77614 10 7.5ZM10.5 10C10.2239 10 10 10.2239 10 10.5C10 10.7761 10.2239 11 10.5 11H12.5C12.7761 11 13 10.7761 13 10.5C13 10.2239 12.7761 10 12.5 10H10.5Z",fill:"currentColor"}))},v=a;export{v as default,a as IconScript};
1
+ import l from"react";import{Svg as p}from"react-native-svg";var n=({children:C,size:r=24,...t})=>{return l.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},C)};import o from"react";import{Path as e}from"react-native-svg";var a=(C)=>{return o.createElement(n,{...C},o.createElement(e,{d:"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z",fill:"currentColor"}),o.createElement(e,{fillRule:"evenodd",clipRule:"evenodd",d:"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.88574 10.0137L9.77637 10.0527L8.88184 10.5H8.5C8.22386 10.5 8 10.7239 8 11C8 11.2761 8.22386 11.5 8.5 11.5H9C9.07762 11.5 9.15421 11.482 9.22363 11.4473L10 11.0586L10.7764 11.4473C10.8458 11.482 10.9224 11.5 11 11.5H13.5C13.7761 11.5 14 11.2761 14 11C14 10.7239 13.7761 10.5 13.5 10.5H11.1182L10.2236 10.0527C10.118 9.99991 9.99839 9.98721 9.88574 10.0137ZM9.88574 6.51367L9.77637 6.55273L8.88184 7H8.5C8.22386 7 8 7.22386 8 7.5C8 7.77614 8.22386 8 8.5 8H9C9.07762 8 9.15421 7.98198 9.22363 7.94727L10 7.55859L10.7764 7.94727C10.8458 7.98198 10.9224 8 11 8H13.5C13.7761 8 14 7.77614 14 7.5C14 7.22386 13.7761 7 13.5 7H11.1182L10.2236 6.55273C10.118 6.49991 9.99839 6.48721 9.88574 6.51367Z",fill:"currentColor"}),o.createElement(e,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},I=a;export{I as default,a as IconScript};
2
2
 
3
- //# debugId=E6CEF55521397ADF64756E2164756E21
3
+ //# debugId=35AD8C239494E2EF64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21L15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536ZM10 7.5C10 7.22386 10.2239 7 10.5 7H13.5C13.7761 7 14 7.22386 14 7.5C14 7.77614 13.7761 8 13.5 8H10.5C10.2239 8 10 7.77614 10 7.5ZM10.5 10C10.2239 10 10 10.2239 10 10.5C10 10.7761 10.2239 11 10.5 11H12.5C12.7761 11 13 10.7761 13 10.5C13 10.2239 12.7761 10 12.5 10H10.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.88574 10.0137L9.77637 10.0527L8.88184 10.5H8.5C8.22386 10.5 8 10.7239 8 11C8 11.2761 8.22386 11.5 8.5 11.5H9C9.07762 11.5 9.15421 11.482 9.22363 11.4473L10 11.0586L10.7764 11.4473C10.8458 11.482 10.9224 11.5 11 11.5H13.5C13.7761 11.5 14 11.2761 14 11C14 10.7239 13.7761 10.5 13.5 10.5H11.1182L10.2236 10.0527C10.118 9.99991 9.99839 9.98721 9.88574 10.0137ZM9.88574 6.51367L9.77637 6.55273L8.88184 7H8.5C8.22386 7 8 7.22386 8 7.5C8 7.77614 8.22386 8 8.5 8H9C9.07762 8 9.15421 7.98198 9.22363 7.94727L10 7.55859L10.7764 7.94727C10.8458 7.98198 10.9224 8 11 8H13.5C13.7761 8 14 7.77614 14 7.5C14 7.22386 13.7761 7 13.5 7H11.1182L10.2236 6.55273C10.118 6.49991 9.99839 6.48721 9.88574 6.51367Z\" fill=\"currentColor\"/><Path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
7
7
  ],
8
- "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAuC,CAAC,IAAU,CAC7D,OAAO,gBAA8iC,EAA9iC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,68BAA68B,KAAK,eAAc,CAAI,GAGxiC",
9
- "debugId": "E6CEF55521397ADF64756E2164756E21",
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAuC,CAAC,IAAU,CAC7D,OAAO,gBAA60C,EAA70C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uNAAuN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,q3BAAq3B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGv0C",
9
+ "debugId": "35AD8C239494E2EF64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var g=Object.create;var{getPrototypeOf:H,defineProperty:t,getOwnPropertyNames:f,getOwnPropertyDescriptor:S}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,B=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var m=o?h??=new WeakMap:y??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?g(H(r)):{};let n=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let p of f(r))if(!i.call(n,p))t(n,p,{get:u.bind(r,p),enumerable:!0});if(C)m.set(r,n);return n},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of f(r))if(!i.call(o,C))t(o,C,{get:u.bind(r,C),enumerable:!(e=S(r,C))||e.enumerable})}return s.set(r,o),o},s;var F=(r)=>r;function b(r,o){this[r]=F.bind(null,o)}var d=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var L={};d(L,{CentralIconBase:()=>l});module.exports=I(L);var v=B(require("react")),x=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var M={};d(M,{default:()=>Z,IconScript2:()=>V});module.exports=I(M);var a=B(require("react"));var P=require("react-native-svg"),V=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3C19.4999 3 19.5001 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C15.5043 21 15.5067 21 15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C19.4999 4 19.4999 4 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502C13 18.502 13 18.502 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536Z",fill:"currentColor"}))},Z=V;
1
+ var v=Object.create;var{getPrototypeOf:H,defineProperty:C,getOwnPropertyNames:i,getOwnPropertyDescriptor:S}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var h,y,I=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?h??=new WeakMap:y??=new WeakMap,s=f.get(r);if(s)return s}t=r!=null?v(H(r)):{};let p=o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t;for(let a of i(r))if(!u.call(p,a))C(p,a,{get:B.bind(r,a),enumerable:!0});if(n)f.set(r,p);return p},x=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))C(o,n,{get:B.bind(r,n),enumerable:!(t=S(r,n))||t.enumerable})}return c.set(r,o),o},c;var F=(r)=>r;function b(r,o){this[r]=F.bind(null,o)}var P=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var M={};P(M,{CentralIconBase:()=>m});module.exports=x(M);var V=I(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return V.default.createElement(g.Svg,{...t,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var Z={};P(Z,{default:()=>w,IconScript2:()=>d});module.exports=x(Z);var e=I(require("react"));var l=require("react-native-svg"),d=(r)=>{return e.default.createElement(m,{...r},e.default.createElement(l.Path,{d:"M14 18C14 19.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z",fill:"currentColor"}),e.default.createElement(l.Path,{d:"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z",fill:"currentColor"}),e.default.createElement(l.Path,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},w=d;
2
2
 
3
- //# debugId=1811C84E627275CF64756E2164756E21
3
+ //# debugId=A14776637C1E9C5964756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3C19.4999 3 19.5001 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C15.5043 21 15.5067 21 15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C19.4999 4 19.4999 4 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502C13 18.502 13 18.502 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M14 18C14 19.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z\" fill=\"currentColor\"/><Path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z\" fill=\"currentColor\"/><Path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
7
7
  ],
8
- "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAA84B,EAA94B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6yBAA6yB,KAAK,eAAc,CAAI,GAGx4B",
9
- "debugId": "1811C84E627275CF64756E2164756E21",
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAA8mB,EAA9mB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGxmB",
9
+ "debugId": "A14776637C1E9C5964756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import n from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...t})=>{return n.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return C.createElement(e,{...o},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3C19.4999 3 19.5001 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C15.5043 21 15.5067 21 15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C19.4999 4 19.4999 4 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502C13 18.502 13 18.502 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536Z",fill:"currentColor"}))},x=a;export{x as default,a as IconScript2};
1
+ import p from"react";import{Svg as l}from"react-native-svg";var C=({children:t,size:r=24,...e})=>{return p.createElement(l,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as n}from"react-native-svg";var a=(t)=>{return o.createElement(C,{...t},o.createElement(n,{d:"M14 18C14 19.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z",fill:"currentColor"}),o.createElement(n,{d:"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z",fill:"currentColor"}),o.createElement(n,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},V=a;export{V as default,a as IconScript2};
2
2
 
3
- //# debugId=FCF7FB8E9DF7006164756E2164756E21
3
+ //# debugId=58B36225D0E1600564756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\n width={typeof size === \"number\" ? `${size}px` : size}\n height={typeof size === \"number\" ? `${size}px` : size}\n viewBox=\"0 0 24 24\"\n fill=\"none\"\n >\n {children}\n </Svg>\n );\n};\n",
6
- "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H21.5C21.7761 10 22 9.77611 22 9.49997V5.5C22 4.13453 20.8654 3 19.5 3C19.4999 3 19.5001 3 19.5 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3.5C3.22386 15 3 15.2239 3 15.5V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C15.5043 21 15.5067 21 15.509 21ZM18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C19.4999 4 19.4999 4 19.4999 4C20.3131 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM13.2235 19.536C13.08 19.2209 13 18.8707 13 18.502C13 18.502 13 18.502 13 18.502L13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3914 19.8565 13.2987 19.7011 13.2235 19.536Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconScript2: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M14 18C14 19.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z\" fill=\"currentColor\"/><Path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z\" fill=\"currentColor\"/><Path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
7
7
  ],
8
- "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAA84B,EAA94B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6yBAA6yB,KAAK,eAAc,CAAI,GAGx4B",
9
- "debugId": "FCF7FB8E9DF7006164756E2164756E21",
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAA8mB,EAA9mB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGxmB",
9
+ "debugId": "58B36225D0E1600564756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -1072,6 +1072,7 @@ Below is a complete list of available icons:
1072
1072
  - IconHandshake
1073
1073
  - IconBecepsLeftArm
1074
1074
  - IconBecepsRightArm
1075
+ - IconHandTouch
1075
1076
 
1076
1077
  ### Health & Medical
1077
1078