@central-icons-react-native/round-filled-radius-2-stroke-1 1.1.270 → 1.1.272

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.8946 13.3829 19.2112 13.8413 20.1475 14.3066C20.1312 14.2986 20.1151 14.2903 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.2093 14.9029 20.9258 16.966 20.4932 18.8467C20.1966 20.1359 19.0162 20.9998 17.6934 21H14.6914C13.5533 21 12.5275 20.3472 11.9727 19.3535C11.3797 18.2916 10.8293 17.4815 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:"M18 3C19.6569 3 21 4.34315 21 6V13.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 17H6C4.34315 17 3 15.6569 3 14V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"}))},M=d;
2
+
3
+ //# debugId=29546C9DCC8ECDB364756E2164756E21
@@ -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.8946 13.3829 19.2112 13.8413 20.1475 14.3066C20.1312 14.2986 20.1151 14.2903 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.2093 14.9029 20.9258 16.966 20.4932 18.8467C20.1966 20.1359 19.0162 20.9998 17.6934 21H14.6914C13.5533 21 12.5275 20.3472 11.9727 19.3535C11.3797 18.2916 10.8293 17.4815 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=\"M18 3C19.6569 3 21 4.34315 21 6V13.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 17H6C4.34315 17 3 15.6569 3 14V6C3 4.34315 4.34315 3 6 3H18Z\" 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,wBAA6wC,EAA7wC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+0BAA+0B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,CAAI,GAGvwC",
9
+ "debugId": "29546C9DCC8ECDB364756E2164756E21",
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.8946 13.3829 19.2112 13.8413 20.1475 14.3066C20.1312 14.2986 20.1151 14.2903 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.2093 14.9029 20.9258 16.966 20.4932 18.8467C20.1966 20.1359 19.0162 20.9998 17.6934 21H14.6914C13.5533 21 12.5275 20.3472 11.9727 19.3535C11.3797 18.2916 10.8293 17.4815 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:"M18 3C19.6569 3 21 4.34315 21 6V13.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 17H6C4.34315 17 3 15.6569 3 14V6C3 4.34315 4.34315 3 6 3H18Z",fill:"currentColor"}))},g=a;export{g as default,a as IconHandTouch};
2
+
3
+ //# debugId=A7746E0056968D2B64756E2164756E21
@@ -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.8946 13.3829 19.2112 13.8413 20.1475 14.3066C20.1312 14.2986 20.1151 14.2903 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.2093 14.9029 20.9258 16.966 20.4932 18.8467C20.1966 20.1359 19.0162 20.9998 17.6934 21H14.6914C13.5533 21 12.5275 20.3472 11.9727 19.3535C11.3797 18.2916 10.8293 17.4815 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=\"M18 3C19.6569 3 21 4.34315 21 6V13.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 17H6C4.34315 17 3 15.6569 3 14V6C3 4.34315 4.34315 3 6 3H18Z\" 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,gBAA6wC,EAA7wC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+0BAA+0B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,CAAI,GAGvwC",
9
+ "debugId": "A7746E0056968D2B64756E2164756E21",
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 d(r){return this[r]}var h,y,B=(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:d.bind(r,f),enumerable:!0});if(n)m.set(r,p);return p},I=(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:d.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 g=(r,C)=>{for(var o in C)l(r,o,{get:C[o],enumerable:!0,configurable:!0,set:S.bind(C,o)})};var b={};g(b,{CentralIconBase:()=>a});module.exports=I(b);var x=B(require("react")),P=require("react-native-svg"),a=({children:r,size:C=24,...o})=>{return x.default.createElement(P.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={};g(w,{default:()=>$,IconMagicHands:()=>L});module.exports=I(w);var t=B(require("react"));var e=require("react-native-svg"),L=(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.0003 6C9.60011 6 7.5281 7.40929 6.56848 9.44772C6.45086 9.69756 6.15298 9.80475 5.90313 9.68713C5.65329 9.56951 5.5461 9.27163 5.66372 9.02179C6.78211 6.64611 9.19845 5 12.0003 5C14.8021 5 17.2184 6.64611 18.3368 9.02179C18.4544 9.27163 18.3472 9.56951 18.0974 9.68713C17.8475 9.80475 17.5497 9.69756 17.432 9.44772C16.4724 7.40929 14.4004 6 12.0003 6Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M12.0003 8C10.4952 8 9.18358 8.831 8.50038 10.0616C8.36635 10.303 8.06197 10.3901 7.82054 10.256C7.57911 10.122 7.49205 9.81762 7.62609 9.57619C8.47847 8.04087 10.1175 7 12.0003 7C13.8831 7 15.522 8.04087 16.3744 9.57619C16.5085 9.81762 16.4214 10.122 16.18 10.256C15.9386 10.3901 15.6342 10.303 15.5001 10.0616C14.8169 8.831 13.5053 8 12.0003 8Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.8255 13.7469C14.8411 13.553 13.835 14.0993 13.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"}))},$=L;
1
+ var M=Object.create;var{getPrototypeOf:v,defineProperty:l,getOwnPropertyNames:c,getOwnPropertyDescriptor:Z}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,y,B=(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:d.bind(r,f),enumerable:!0});if(n)m.set(r,p);return p},I=(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:d.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 g=(r,C)=>{for(var o in C)l(r,o,{get:C[o],enumerable:!0,configurable:!0,set:S.bind(C,o)})};var b={};g(b,{CentralIconBase:()=>a});module.exports=I(b);var x=B(require("react")),P=require("react-native-svg"),a=({children:r,size:C=24,...o})=>{return x.default.createElement(P.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={};g(w,{default:()=>$,IconMagicHands:()=>L});module.exports=I(w);var t=B(require("react"));var e=require("react-native-svg"),L=(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.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z",fill:"currentColor"}),t.default.createElement(e.Path,{d:"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.826 13.7469C14.8416 13.553 13.8354 14.0993 13.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"}))},$=L;
2
2
 
3
- //# debugId=1EEB579B5CEBA0E364756E2164756E21
3
+ //# debugId=483C03A07686E18564756E2164756E21
@@ -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.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.0003 6C9.60011 6 7.5281 7.40929 6.56848 9.44772C6.45086 9.69756 6.15298 9.80475 5.90313 9.68713C5.65329 9.56951 5.5461 9.27163 5.66372 9.02179C6.78211 6.64611 9.19845 5 12.0003 5C14.8021 5 17.2184 6.64611 18.3368 9.02179C18.4544 9.27163 18.3472 9.56951 18.0974 9.68713C17.8475 9.80475 17.5497 9.69756 17.432 9.44772C16.4724 7.40929 14.4004 6 12.0003 6Z\" fill=\"currentColor\"/><Path d=\"M12.0003 8C10.4952 8 9.18358 8.831 8.50038 10.0616C8.36635 10.303 8.06197 10.3901 7.82054 10.256C7.57911 10.122 7.49205 9.81762 7.62609 9.57619C8.47847 8.04087 10.1175 7 12.0003 7C13.8831 7 15.522 8.04087 16.3744 9.57619C16.5085 9.81762 16.4214 10.122 16.18 10.256C15.9386 10.3901 15.6342 10.303 15.5001 10.0616C14.8169 8.831 13.5053 8 12.0003 8Z\" fill=\"currentColor\"/><Path d=\"M8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z\" fill=\"currentColor\"/><Path d=\"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.8255 13.7469C14.8411 13.553 13.835 14.0993 13.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.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z\" fill=\"currentColor\"/><Path d=\"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.826 13.7469C14.8416 13.553 13.8354 14.0993 13.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,wBAAgzD,EAAhzD,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,mWAAmW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,uWAAuW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6VAA6V,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4SAA4S,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,CAAI,GAG1yD",
9
- "debugId": "1EEB579B5CEBA0E364756E2164756E21",
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,wBAAmzD,EAAnzD,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,4SAA4S,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,CAAI,GAG7yD",
9
+ "debugId": "483C03A07686E18564756E2164756E21",
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.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.0003 6C9.60011 6 7.5281 7.40929 6.56848 9.44772C6.45086 9.69756 6.15298 9.80475 5.90313 9.68713C5.65329 9.56951 5.5461 9.27163 5.66372 9.02179C6.78211 6.64611 9.19845 5 12.0003 5C14.8021 5 17.2184 6.64611 18.3368 9.02179C18.4544 9.27163 18.3472 9.56951 18.0974 9.68713C17.8475 9.80475 17.5497 9.69756 17.432 9.44772C16.4724 7.40929 14.4004 6 12.0003 6Z",fill:"currentColor"}),C.createElement(o,{d:"M12.0003 8C10.4952 8 9.18358 8.831 8.50038 10.0616C8.36635 10.303 8.06197 10.3901 7.82054 10.256C7.57911 10.122 7.49205 9.81762 7.62609 9.57619C8.47847 8.04087 10.1175 7 12.0003 7C13.8831 7 15.522 8.04087 16.3744 9.57619C16.5085 9.81762 16.4214 10.122 16.18 10.256C15.9386 10.3901 15.6342 10.303 15.5001 10.0616C14.8169 8.831 13.5053 8 12.0003 8Z",fill:"currentColor"}),C.createElement(o,{d:"M8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z",fill:"currentColor"}),C.createElement(o,{d:"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.8255 13.7469C14.8411 13.553 13.835 14.0993 13.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"}))},x=f;export{x 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.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z",fill:"currentColor"}),C.createElement(o,{d:"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.826 13.7469C14.8416 13.553 13.8354 14.0993 13.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"}))},x=f;export{x as default,f as IconMagicHands};
2
2
 
3
- //# debugId=2D549A55A1960F3064756E2164756E21
3
+ //# debugId=62487FEEEC16A98464756E2164756E21
@@ -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.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.0003 6C9.60011 6 7.5281 7.40929 6.56848 9.44772C6.45086 9.69756 6.15298 9.80475 5.90313 9.68713C5.65329 9.56951 5.5461 9.27163 5.66372 9.02179C6.78211 6.64611 9.19845 5 12.0003 5C14.8021 5 17.2184 6.64611 18.3368 9.02179C18.4544 9.27163 18.3472 9.56951 18.0974 9.68713C17.8475 9.80475 17.5497 9.69756 17.432 9.44772C16.4724 7.40929 14.4004 6 12.0003 6Z\" fill=\"currentColor\"/><Path d=\"M12.0003 8C10.4952 8 9.18358 8.831 8.50038 10.0616C8.36635 10.303 8.06197 10.3901 7.82054 10.256C7.57911 10.122 7.49205 9.81762 7.62609 9.57619C8.47847 8.04087 10.1175 7 12.0003 7C13.8831 7 15.522 8.04087 16.3744 9.57619C16.5085 9.81762 16.4214 10.122 16.18 10.256C15.9386 10.3901 15.6342 10.303 15.5001 10.0616C14.8169 8.831 13.5053 8 12.0003 8Z\" fill=\"currentColor\"/><Path d=\"M8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z\" fill=\"currentColor\"/><Path d=\"M19.9432 11.5707C18.3214 10.9804 16.5281 11.8166 15.9378 13.4384L15.8255 13.7469C14.8411 13.553 13.835 14.0993 13.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.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716C10.1653 14.0993 9.15911 13.553 8.1747 13.7469L8.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.5576Z\" fill=\"currentColor\"/><Path d=\"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.826 13.7469C14.8416 13.553 13.8354 14.0993 13.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,gBAAgzD,EAAhzD,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,mWAAmW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uWAAuW,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6VAA6V,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4SAA4S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,CAAI,GAG1yD",
9
- "debugId": "2D549A55A1960F3064756E2164756E21",
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,gBAAmzD,EAAnzD,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,4SAA4S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,CAAI,GAG7yD",
9
+ "debugId": "62487FEEEC16A98464756E2164756E21",
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,H=Object.prototype.hasOwnProperty;function i(r){return this[r]}var S,Z,u=(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(!H.call(n,p))t(n,p,{get:i.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(!H.call(o,e))t(o,e,{get:i.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=u(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=u(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:"M8.75035 3.00037L19.4998 3C20.8653 3 22 4.13453 22 5.5V8.00023C22 9.1049 21.1045 10 20 10H18V18.502C18 19.8788 16.8849 20.9962 15.509 21L15.502 21H15.498L15.4949 21H5.5329C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V16.9999C3 15.8952 3.89585 15 5.00026 15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037ZM13.1996 19.4816C13.2787 19.667 13.3796 19.8409 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16.9999C4 16.4478 4.44782 16 5.00026 16H11.9997C12.5517 16 12.9993 16.4472 13 16.9988L13 18.502C13 18.8496 13.0711 19.1808 13.1996 19.4816ZM20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9ZM10 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:g,defineProperty:n,getOwnPropertyNames:i,getOwnPropertyDescriptor:M}=Object,s=Object.prototype.hasOwnProperty;function u(r){return this[r]}var S,Z,L=(r,o,C)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?S??=new WeakMap:Z??=new WeakMap,H=m.get(r);if(H)return H}C=r!=null?P(g(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=M(r,e))||C.enumerable})}return c.set(r,o),o},c;var h=(r)=>r;function y(r,o){this[r]=h.bind(null,o)}var B=(r,o)=>{for(var C in o)n(r,C,{get:o[C],enumerable:!0,configurable:!0,set:y.bind(o,C)})};var F={};B(F,{CentralIconBase:()=>f});module.exports=d(F);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 V={};B(V,{default:()=>b,IconScript:()=>x});module.exports=d(V);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:"M12 16C13.1046 16 14 16.8954 14 18C14 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 18C2 16.8954 2.89543 16 4 16H12Z",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 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},b=x;
2
2
 
3
- //# debugId=E38E14FAE9B80B6364756E2164756E21
3
+ //# debugId=93A8F2A4C443D98E64756E2164756E21
@@ -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=\"M8.75035 3.00037L19.4998 3C20.8653 3 22 4.13453 22 5.5V8.00023C22 9.1049 21.1045 10 20 10H18V18.502C18 19.8788 16.8849 20.9962 15.509 21L15.502 21H15.498L15.4949 21H5.5329C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V16.9999C3 15.8952 3.89585 15 5.00026 15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037ZM13.1996 19.4816C13.2787 19.667 13.3796 19.8409 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16.9999C4 16.4478 4.44782 16 5.00026 16H11.9997C12.5517 16 12.9993 16.4472 13 16.9988L13 18.502C13 18.8496 13.0711 19.1808 13.1996 19.4816ZM20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9ZM10 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=\"M12 16C13.1046 16 14 16.8954 14 18C14 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 18C2 16.8954 2.89543 16 4 16H12Z\" 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 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 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,wBAAkrC,EAAlrC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ilCAAilC,KAAK,eAAc,CAAI,GAG5qC",
9
- "debugId": "E38E14FAE9B80B6364756E2164756E21",
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,wBAAo0C,EAAp0C,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k3BAAk3B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG9zC",
9
+ "debugId": "93A8F2A4C443D98E64756E2164756E21",
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:"M8.75035 3.00037L19.4998 3C20.8653 3 22 4.13453 22 5.5V8.00023C22 9.1049 21.1045 10 20 10H18V18.502C18 19.8788 16.8849 20.9962 15.509 21L15.502 21H15.498L15.4949 21H5.5329C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V16.9999C3 15.8952 3.89585 15 5.00026 15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037ZM13.1996 19.4816C13.2787 19.667 13.3796 19.8409 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16.9999C4 16.4478 4.44782 16 5.00026 16H11.9997C12.5517 16 12.9993 16.4472 13 16.9988L13 18.502C13 18.8496 13.0711 19.1808 13.1996 19.4816ZM20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9ZM10 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:"M12 16C13.1046 16 14 16.8954 14 18C14 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 18C2 16.8954 2.89543 16 4 16H12Z",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 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 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=33D9002F53DDB3CF64756E2164756E21
3
+ //# debugId=7EF17D109BC0280764756E2164756E21
@@ -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=\"M8.75035 3.00037L19.4998 3C20.8653 3 22 4.13453 22 5.5V8.00023C22 9.1049 21.1045 10 20 10H18V18.502C18 19.8788 16.8849 20.9962 15.509 21L15.502 21H15.498L15.4949 21H5.5329C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V16.9999C3 15.8952 3.89585 15 5.00026 15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037ZM13.1996 19.4816C13.2787 19.667 13.3796 19.8409 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16.9999C4 16.4478 4.44782 16 5.00026 16H11.9997C12.5517 16 12.9993 16.4472 13 16.9988L13 18.502C13 18.8496 13.0711 19.1808 13.1996 19.4816ZM20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9ZM10 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=\"M12 16C13.1046 16 14 16.8954 14 18C14 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 18C2 16.8954 2.89543 16 4 16H12Z\" 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 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 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,gBAAkrC,EAAlrC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ilCAAilC,KAAK,eAAc,CAAI,GAG5qC",
9
- "debugId": "33D9002F53DDB3CF64756E2164756E21",
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,gBAAo0C,EAAp0C,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k3BAAk3B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG9zC",
9
+ "debugId": "7EF17D109BC0280764756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var V=Object.create;var{getPrototypeOf:g,defineProperty:t,getOwnPropertyNames:i,getOwnPropertyDescriptor:S}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var h,y,B=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var c=o?h??=new WeakMap:y??=new WeakMap,f=c.get(r);if(f)return f}e=r!=null?V(g(r)):{};let n=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let l of i(r))if(!u.call(n,l))t(n,l,{get:d.bind(r,l),enumerable:!0});if(C)c.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 i(r))if(!u.call(o,C))t(o,C,{get:d.bind(r,C),enumerable:!(e=S(r,C))||e.enumerable})}return s.set(r,o),o},s;var F=(r)=>r;function M(r,o){this[r]=F.bind(null,o)}var v=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var b={};v(b,{CentralIconBase:()=>a});module.exports=I(b);var x=B(require("react")),H=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return x.default.createElement(H.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 w={};v(w,{default:()=>L,IconScript2:()=>P});module.exports=I(w);var p=B(require("react"));var m=require("react-native-svg"),P=(r)=>{return p.default.createElement(a,{...r},p.default.createElement(m.Path,{d:"M13.1996 19.4816C13.087 19.2181 13.0185 18.9313 13.0033 18.6305C13.0011 18.5879 13 18.5451 13 18.502",fill:"currentColor"}),p.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.4998 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H5.00026C3.89585 15 3 15.8952 3 16.9999V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21H15.4949L15.498 21H15.502C15.5043 21 15.5067 21 15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H20C21.1045 10 22 9.1049 22 8.00023V5.5C22 4.13453 20.8653 3 19.4998 3ZM13 16.9988C12.9993 16.4472 12.5517 16 11.9997 16H5.00026C4.44782 16 4 16.4478 4 16.9999V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3796 19.8409 13.2787 19.667 13.1996 19.4816M20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9Z",fill:"currentColor"}))},L=P;
1
+ var H=Object.create;var{getPrototypeOf:S,defineProperty:C,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function B(r){return this[r]}var y,F,I=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var f=o?y??=new WeakMap:F??=new WeakMap,s=f.get(r);if(s)return s}t=r!=null?H(S(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=h(r,n))||t.enumerable})}return c.set(r,o),o},c;var V=(r)=>r;function b(r,o){this[r]=V.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 g=I(require("react")),d=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return g.default.createElement(d.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:()=>v});module.exports=x(Z);var e=I(require("react"));var l=require("react-native-svg"),v=(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 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z",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 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},w=v;
2
2
 
3
- //# debugId=F836038FA92B456D64756E2164756E21
3
+ //# debugId=2706E7E14EC3837A64756E2164756E21
@@ -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 d=\"M13.1996 19.4816C13.087 19.2181 13.0185 18.9313 13.0033 18.6305C13.0011 18.5879 13 18.5451 13 18.502\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.4998 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H5.00026C3.89585 15 3 15.8952 3 16.9999V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21H15.4949L15.498 21H15.502C15.5043 21 15.5067 21 15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H20C21.1045 10 22 9.1049 22 8.00023V5.5C22 4.13453 20.8653 3 19.4998 3ZM13 16.9988C12.9993 16.4472 12.5517 16 11.9997 16H5.00026C4.44782 16 4 16.4478 4 16.9999V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3796 19.8409 13.2787 19.667 13.1996 19.4816M20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9Z\" 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 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z\" fill=\"currentColor\"/><Path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 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,wBAAmgC,EAAngC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uGAAuG,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8xBAA8xB,KAAK,eAAc,CAAI,GAG7/B",
9
- "debugId": "F836038FA92B456D64756E2164756E21",
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,wBAAqmB,EAArmB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG/lB",
9
+ "debugId": "2706E7E14EC3837A64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";import{Svg as l}from"react-native-svg";var C=({children:o,size:r=24,...n})=>{return p.createElement(l,{...n,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(C,{...o},e.createElement(t,{d:"M13.1996 19.4816C13.087 19.2181 13.0185 18.9313 13.0033 18.6305C13.0011 18.5879 13 18.5451 13 18.502",fill:"currentColor"}),e.createElement(t,{fillRule:"evenodd",clipRule:"evenodd",d:"M19.4998 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H5.00026C3.89585 15 3 15.8952 3 16.9999V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21H15.4949L15.498 21H15.502C15.5043 21 15.5067 21 15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H20C21.1045 10 22 9.1049 22 8.00023V5.5C22 4.13453 20.8653 3 19.4998 3ZM13 16.9988C12.9993 16.4472 12.5517 16 11.9997 16H5.00026C4.44782 16 4 16.4478 4 16.9999V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3796 19.8409 13.2787 19.667 13.1996 19.4816M20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9Z",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 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z",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 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},g=a;export{g as default,a as IconScript2};
2
2
 
3
- //# debugId=096ED49C37B11A5364756E2164756E21
3
+ //# debugId=8D23BF6A1C71EEC164756E2164756E21
@@ -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 d=\"M13.1996 19.4816C13.087 19.2181 13.0185 18.9313 13.0033 18.6305C13.0011 18.5879 13 18.5451 13 18.502\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.4998 3L8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H5.00026C3.89585 15 3 15.8952 3 16.9999V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21H15.4949L15.498 21H15.502C15.5043 21 15.5067 21 15.509 21C16.8849 20.9962 18 19.8788 18 18.502V10H20C21.1045 10 22 9.1049 22 8.00023V5.5C22 4.13453 20.8653 3 19.4998 3ZM13 16.9988C12.9993 16.4472 12.5517 16 11.9997 16H5.00026C4.44782 16 4 16.4478 4 16.9999V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3796 19.8409 13.2787 19.667 13.1996 19.4816M20 9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934C18.7205 4.15813 19.1021 4.00003 19.4999 4C20.3131 4 21 4.68682 21 5.5V8.00023C21 8.55241 20.5524 9 20 9Z\" 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 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z\" fill=\"currentColor\"/><Path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 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.5V7C21 8.10457 20.1046 9 19 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,gBAAmgC,EAAngC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uGAAuG,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8xBAA8xB,KAAK,eAAc,CAAI,GAG7/B",
9
- "debugId": "096ED49C37B11A5364756E2164756E21",
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,gBAAqmB,EAArmB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG/lB",
9
+ "debugId": "8D23BF6A1C71EEC164756E2164756E21",
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