@central-icons-react-native/square-filled-radius-0-stroke-2 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:y}=Object,i=Object.prototype.hasOwnProperty;function B(r){return this[r]}var F,H,I=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?F??=new WeakMap:H??=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=y(r,t))||C.enumerable})}return f.set(r,o),o},f;var S=(r)=>r;function b(r,o){this[r]=S.bind(null,o)}var P=(r,o)=>{for(var C in o)n(r,C,{get:o[C],enumerable:!0,configurable:!0,set:b.bind(o,C)})};var w={};P(w,{CentralIconBase:()=>a});module.exports=x(w);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 L={};P(L,{default:()=>M,IconHandTouch:()=>d});module.exports=x(L);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.2178 8.22656C16.2243 8.22656 17.0408 9.04238 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.4834 15.0622 20.5182 19.0209 19.9209 21H12.834C11.8577 19.0395 11.1426 17.8463 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.22656Z",fill:"currentColor"}),p.default.createElement(m.Path,{d:"M21 12.4961C20.4023 12.2021 19.7065 11.9232 19.041 11.6943V10.0488C19.0408 8.00385 17.4346 6.33392 15.415 6.23145L15.2188 6.22656C13.1077 6.22656 11.3957 7.93781 11.3955 10.0488V12.1045C10.6204 12.067 9.84137 12.2887 9.19238 12.7568C7.75073 13.7971 7.4426 15.5725 8.02734 17H3V3H21V12.4961Z",fill:"currentColor"}))},M=d;
2
+
3
+ //# debugId=104E00170EF2B63C64756E2164756E21
@@ -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.2178 8.22656C16.2243 8.22656 17.0408 9.04238 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.4834 15.0622 20.5182 19.0209 19.9209 21H12.834C11.8577 19.0395 11.1426 17.8463 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.22656Z\" fill=\"currentColor\"/><Path d=\"M21 12.4961C20.4023 12.2021 19.7065 11.9232 19.041 11.6943V10.0488C19.0408 8.00385 17.4346 6.33392 15.415 6.23145L15.2188 6.22656C13.1077 6.22656 11.3957 7.93781 11.3955 10.0488V12.1045C10.6204 12.067 9.84137 12.2887 9.19238 12.7568C7.75073 13.7971 7.4426 15.5725 8.02734 17H3V3H21V12.4961Z\" 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,wBAA4+B,EAA5+B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,+mBAA+mB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,CAAI,GAGt+B",
9
+ "debugId": "104E00170EF2B63C64756E2164756E21",
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.2178 8.22656C16.2243 8.22656 17.0408 9.04238 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.4834 15.0622 20.5182 19.0209 19.9209 21H12.834C11.8577 19.0395 11.1426 17.8463 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.22656Z",fill:"currentColor"}),C.createElement(n,{d:"M21 12.4961C20.4023 12.2021 19.7065 11.9232 19.041 11.6943V10.0488C19.0408 8.00385 17.4346 6.33392 15.415 6.23145L15.2188 6.22656C13.1077 6.22656 11.3957 7.93781 11.3955 10.0488V12.1045C10.6204 12.067 9.84137 12.2887 9.19238 12.7568C7.75073 13.7971 7.4426 15.5725 8.02734 17H3V3H21V12.4961Z",fill:"currentColor"}))},g=a;export{g as default,a as IconHandTouch};
2
+
3
+ //# debugId=8D9BE3F80B0B9F7E64756E2164756E21
@@ -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.2178 8.22656C16.2243 8.22656 17.0408 9.04238 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.4834 15.0622 20.5182 19.0209 19.9209 21H12.834C11.8577 19.0395 11.1426 17.8463 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.22656Z\" fill=\"currentColor\"/><Path d=\"M21 12.4961C20.4023 12.2021 19.7065 11.9232 19.041 11.6943V10.0488C19.0408 8.00385 17.4346 6.33392 15.415 6.23145L15.2188 6.22656C13.1077 6.22656 11.3957 7.93781 11.3955 10.0488V12.1045C10.6204 12.067 9.84137 12.2887 9.19238 12.7568C7.75073 13.7971 7.4426 15.5725 8.02734 17H3V3H21V12.4961Z\" 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,gBAA4+B,EAA5+B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,+mBAA+mB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,CAAI,GAGt+B",
9
+ "debugId": "8D9BE3F80B0B9F7E64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var v=Object.create;var{getPrototypeOf:M,defineProperty:e,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function L(r){return this[r]}var y,F,B=(r,o,C)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?y??=new WeakMap:F??=new WeakMap,s=m.get(r);if(s)return s}C=r!=null?v(M(r)):{};let p=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let a of i(r))if(!u.call(p,a))e(p,a,{get:L.bind(r,a),enumerable:!0});if(n)m.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))e(o,n,{get:L.bind(r,n),enumerable:!(C=h(r,n))||C.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function Z(r,o){this[r]=S.bind(null,o)}var d=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:Z.bind(o,C)})};var b={};d(b,{CentralIconBase:()=>f});module.exports=I(b);var g=B(require("react")),x=require("react-native-svg"),f=({children:r,size:o=24,...C})=>{return g.default.createElement(x.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={};d(w,{default:()=>$,IconMagicHands:()=>P});module.exports=I(w);var t=B(require("react"));var l=require("react-native-svg"),P=(r)=>{return t.default.createElement(f,{...r},t.default.createElement(l.Path,{d:"M12.0004 5C9.05486 5 6.53193 6.8196 5.49893 9.39977L3.64221 8.6564C4.96871 5.34317 8.20969 3 12.0004 3C15.791 3 19.032 5.34317 20.3585 8.6564L18.5018 9.39977C17.4688 6.8196 14.9459 5 12.0004 5Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M12.0004 8C10.3179 8 8.8757 9.03908 8.2851 10.5142L6.42838 9.77087C7.31247 7.56265 9.47272 6 12.0004 6C14.528 6 16.6883 7.56265 17.5723 9.77087L15.7156 10.5142C15.125 9.03908 13.6828 8 12.0004 8Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M20.2443 11.5279C21.931 12.1418 22.8007 14.0068 22.1868 15.6935L21.5882 17.338C20.8327 19.4139 18.5373 20.4842 16.4614 19.7287C14.3855 18.9731 13.3151 16.6777 14.0707 14.6018L14.7547 12.7224L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 20.2443 11.5279Z",fill:"currentColor"}))},$=P;
1
+ var v=Object.create;var{getPrototypeOf:M,defineProperty:e,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function L(r){return this[r]}var y,F,B=(r,o,C)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?y??=new WeakMap:F??=new WeakMap,s=m.get(r);if(s)return s}C=r!=null?v(M(r)):{};let p=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let a of i(r))if(!u.call(p,a))e(p,a,{get:L.bind(r,a),enumerable:!0});if(n)m.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))e(o,n,{get:L.bind(r,n),enumerable:!(C=h(r,n))||C.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function Z(r,o){this[r]=S.bind(null,o)}var d=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:Z.bind(o,C)})};var b={};d(b,{CentralIconBase:()=>f});module.exports=I(b);var g=B(require("react")),x=require("react-native-svg"),f=({children:r,size:o=24,...C})=>{return g.default.createElement(x.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={};d(w,{default:()=>$,IconMagicHands:()=>P});module.exports=I(w);var t=B(require("react"));var l=require("react-native-svg"),P=(r)=>{return t.default.createElement(f,{...r},t.default.createElement(l.Path,{d:"M11.9988 5C9.05327 5 6.53035 6.8196 5.49735 9.39977L3.64062 8.6564C4.96712 5.34317 8.2081 3 11.9988 3C15.7894 3 19.0304 5.34317 20.3569 8.6564L18.5002 9.39977C17.4672 6.8196 14.9443 5 11.9988 5Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M12.0017 8C10.3192 8 8.877 9.03908 8.28641 10.5142L6.42969 9.77087C7.31378 7.56265 9.47402 6 12.0017 6C14.5293 6 16.6896 7.56265 17.5736 9.77087L15.7169 10.5142C15.1263 9.03908 13.6841 8 12.0017 8Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z",fill:"currentColor"}),t.default.createElement(l.Path,{d:"M20.2441 11.5279C21.9308 12.1418 22.8004 14.0068 22.1865 15.6935L21.588 17.338C20.8324 19.4139 18.537 20.4842 16.4611 19.7287C14.3852 18.9731 13.3149 16.6777 14.0704 14.6018L14.7545 12.7224L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z",fill:"currentColor"}))},$=P;
2
2
 
3
- //# debugId=00AC543CFC953EC664756E2164756E21
3
+ //# debugId=B6591D5F2A8FC60064756E2164756E21
@@ -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.0004 5C9.05486 5 6.53193 6.8196 5.49893 9.39977L3.64221 8.6564C4.96871 5.34317 8.20969 3 12.0004 3C15.791 3 19.032 5.34317 20.3585 8.6564L18.5018 9.39977C17.4688 6.8196 14.9459 5 12.0004 5Z\" fill=\"currentColor\"/><Path d=\"M12.0004 8C10.3179 8 8.8757 9.03908 8.2851 10.5142L6.42838 9.77087C7.31247 7.56265 9.47272 6 12.0004 6C14.528 6 16.6883 7.56265 17.5723 9.77087L15.7156 10.5142C15.125 9.03908 13.6828 8 12.0004 8Z\" fill=\"currentColor\"/><Path d=\"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><Path d=\"M20.2443 11.5279C21.931 12.1418 22.8007 14.0068 22.1868 15.6935L21.5882 17.338C20.8327 19.4139 18.5373 20.4842 16.4614 19.7287C14.3855 18.9731 13.3151 16.6777 14.0707 14.6018L14.7547 12.7224L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 20.2443 11.5279Z\" 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=\"M11.9988 5C9.05327 5 6.53035 6.8196 5.49735 9.39977L3.64062 8.6564C4.96712 5.34317 8.2081 3 11.9988 3C15.7894 3 19.0304 5.34317 20.3569 8.6564L18.5002 9.39977C17.4672 6.8196 14.9443 5 11.9988 5Z\" fill=\"currentColor\"/><Path d=\"M12.0017 8C10.3192 8 8.877 9.03908 8.28641 10.5142L6.42969 9.77087C7.31378 7.56265 9.47402 6 12.0017 6C14.5293 6 16.6896 7.56265 17.5736 9.77087L15.7169 10.5142C15.1263 9.03908 13.6841 8 12.0017 8Z\" fill=\"currentColor\"/><Path d=\"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><Path d=\"M20.2441 11.5279C21.9308 12.1418 22.8004 14.0068 22.1865 15.6935L21.588 17.338C20.8324 19.4139 18.537 20.4842 16.4611 19.7287C14.3852 18.9731 13.3149 16.6777 14.0704 14.6018L14.7545 12.7224L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z\" 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,wBAAiiC,EAAjiC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,oMAAoM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mQAAmQ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kQAAkQ,KAAK,eAAc,CAAI,GAG3hC",
9
- "debugId": "00AC543CFC953EC664756E2164756E21",
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,wBAAmiC,EAAniC,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wMAAwM,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mQAAmQ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iQAAiQ,KAAK,eAAc,CAAI,GAG7hC",
9
+ "debugId": "B6591D5F2A8FC60064756E2164756E21",
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 o from"react";import{Path as C}from"react-native-svg";var a=(n)=>{return o.createElement(t,{...n},o.createElement(C,{d:"M12.0004 5C9.05486 5 6.53193 6.8196 5.49893 9.39977L3.64221 8.6564C4.96871 5.34317 8.20969 3 12.0004 3C15.791 3 19.032 5.34317 20.3585 8.6564L18.5018 9.39977C17.4688 6.8196 14.9459 5 12.0004 5Z",fill:"currentColor"}),o.createElement(C,{d:"M12.0004 8C10.3179 8 8.8757 9.03908 8.2851 10.5142L6.42838 9.77087C7.31247 7.56265 9.47272 6 12.0004 6C14.528 6 16.6883 7.56265 17.5723 9.77087L15.7156 10.5142C15.125 9.03908 13.6828 8 12.0004 8Z",fill:"currentColor"}),o.createElement(C,{d:"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z",fill:"currentColor"}),o.createElement(C,{d:"M20.2443 11.5279C21.931 12.1418 22.8007 14.0068 22.1868 15.6935L21.5882 17.338C20.8327 19.4139 18.5373 20.4842 16.4614 19.7287C14.3855 18.9731 13.3151 16.6777 14.0707 14.6018L14.7547 12.7224L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 20.2443 11.5279Z",fill:"currentColor"}))},g=a;export{g as default,a 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 o from"react";import{Path as C}from"react-native-svg";var a=(n)=>{return o.createElement(t,{...n},o.createElement(C,{d:"M11.9988 5C9.05327 5 6.53035 6.8196 5.49735 9.39977L3.64062 8.6564C4.96712 5.34317 8.2081 3 11.9988 3C15.7894 3 19.0304 5.34317 20.3569 8.6564L18.5002 9.39977C17.4672 6.8196 14.9443 5 11.9988 5Z",fill:"currentColor"}),o.createElement(C,{d:"M12.0017 8C10.3192 8 8.877 9.03908 8.28641 10.5142L6.42969 9.77087C7.31378 7.56265 9.47402 6 12.0017 6C14.5293 6 16.6896 7.56265 17.5736 9.77087L15.7169 10.5142C15.1263 9.03908 13.6841 8 12.0017 8Z",fill:"currentColor"}),o.createElement(C,{d:"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z",fill:"currentColor"}),o.createElement(C,{d:"M20.2441 11.5279C21.9308 12.1418 22.8004 14.0068 22.1865 15.6935L21.588 17.338C20.8324 19.4139 18.537 20.4842 16.4611 19.7287C14.3852 18.9731 13.3149 16.6777 14.0704 14.6018L14.7545 12.7224L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z",fill:"currentColor"}))},g=a;export{g as default,a as IconMagicHands};
2
2
 
3
- //# debugId=0D770682CD7CF89264756E2164756E21
3
+ //# debugId=09F216A0E427DD0664756E2164756E21
@@ -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.0004 5C9.05486 5 6.53193 6.8196 5.49893 9.39977L3.64221 8.6564C4.96871 5.34317 8.20969 3 12.0004 3C15.791 3 19.032 5.34317 20.3585 8.6564L18.5018 9.39977C17.4688 6.8196 14.9459 5 12.0004 5Z\" fill=\"currentColor\"/><Path d=\"M12.0004 8C10.3179 8 8.8757 9.03908 8.2851 10.5142L6.42838 9.77087C7.31247 7.56265 9.47272 6 12.0004 6C14.528 6 16.6883 7.56265 17.5723 9.77087L15.7156 10.5142C15.125 9.03908 13.6828 8 12.0004 8Z\" fill=\"currentColor\"/><Path d=\"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><Path d=\"M20.2443 11.5279C21.931 12.1418 22.8007 14.0068 22.1868 15.6935L21.5882 17.338C20.8327 19.4139 18.5373 20.4842 16.4614 19.7287C14.3855 18.9731 13.3151 16.6777 14.0707 14.6018L14.7547 12.7224L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 20.2443 11.5279Z\" 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=\"M11.9988 5C9.05327 5 6.53035 6.8196 5.49735 9.39977L3.64062 8.6564C4.96712 5.34317 8.2081 3 11.9988 3C15.7894 3 19.0304 5.34317 20.3569 8.6564L18.5002 9.39977C17.4672 6.8196 14.9443 5 11.9988 5Z\" fill=\"currentColor\"/><Path d=\"M12.0017 8C10.3192 8 8.877 9.03908 8.28641 10.5142L6.42969 9.77087C7.31378 7.56265 9.47402 6 12.0017 6C14.5293 6 16.6896 7.56265 17.5736 9.77087L15.7169 10.5142C15.1263 9.03908 13.6841 8 12.0017 8Z\" fill=\"currentColor\"/><Path d=\"M3.75651 11.5279C2.06983 12.1418 1.20017 14.0068 1.81407 15.6935L2.41261 17.338C3.16818 19.4139 5.46355 20.4842 7.53946 19.7287C9.61537 18.9731 10.6857 16.6777 9.93015 14.6018L9.24611 12.7224L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><Path d=\"M20.2441 11.5279C21.9308 12.1418 22.8004 14.0068 22.1865 15.6935L21.588 17.338C20.8324 19.4139 18.537 20.4842 16.4611 19.7287C14.3852 18.9731 13.3149 16.6777 14.0704 14.6018L14.7545 12.7224L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z\" 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,gBAAiiC,EAAjiC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,oMAAoM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mQAAmQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kQAAkQ,KAAK,eAAc,CAAI,GAG3hC",
9
- "debugId": "0D770682CD7CF89264756E2164756E21",
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,gBAAmiC,EAAniC,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wMAAwM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mQAAmQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iQAAiQ,KAAK,eAAc,CAAI,GAG7hC",
9
+ "debugId": "09F216A0E427DD0664756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var g=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:s,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var F,S,d=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var L=o?F??=new WeakMap:S??=new WeakMap,c=L.get(r);if(c)return c}e=r!=null?g(h(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let C of s(r))if(!i.call(p,C))t(p,C,{get:u.bind(r,C),enumerable:!0});if(n)L.set(r,p);return p},B=(r)=>{var o=(f??=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 s(r))if(!i.call(o,n))t(o,n,{get:u.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var M={};I(M,{CentralIconBase:()=>a});module.exports=B(M);var P=d(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(v.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={};I(Z,{default:()=>$,IconPinch:()=>x});module.exports=B(Z);var l=d(require("react"));var m=require("react-native-svg"),x=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3.79331 7.17786L3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942L1.92786 6.45669L3.79331 7.17786Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z",fill:"currentColor"}))},$=x;
1
+ var g=Object.create;var{getPrototypeOf:h,defineProperty:t,getOwnPropertyNames:s,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var F,S,d=(r,o,e)=>{var n=r!=null&&typeof r==="object";if(n){var L=o?F??=new WeakMap:S??=new WeakMap,c=L.get(r);if(c)return c}e=r!=null?g(h(r)):{};let p=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let C of s(r))if(!i.call(p,C))t(p,C,{get:u.bind(r,C),enumerable:!0});if(n)L.set(r,p);return p},B=(r)=>{var o=(f??=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 s(r))if(!i.call(o,n))t(o,n,{get:u.bind(r,n),enumerable:!(e=y(r,n))||e.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function w(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:w.bind(o,e)})};var M={};I(M,{CentralIconBase:()=>a});module.exports=B(M);var P=d(require("react")),v=require("react-native-svg"),a=({children:r,size:o=24,...e})=>{return P.default.createElement(v.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={};I(Z,{default:()=>$,IconPinch:()=>x});module.exports=B(Z);var l=d(require("react"));var m=require("react-native-svg"),x=(r)=>{return l.default.createElement(a,{...r},l.default.createElement(m.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M3.79331 7.17783L3.43273 8.11056C2.85576 9.60301 2.85576 10.8969 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34589 1.56727 7.38939L1.92786 6.45667L3.79331 7.17783Z",fill:"currentColor"}),l.default.createElement(m.Path,{d:"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z",fill:"currentColor"}))},$=x;
2
2
 
3
- //# debugId=89699AEB6A39D64A64756E2164756E21
3
+ //# debugId=BD41B7525F26B7F164756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.79331 7.17786L3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942L1.92786 6.45669L3.79331 7.17786Z\" fill=\"currentColor\"/><Path d=\"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z\" 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.79331 7.17783L3.43273 8.11056C2.85576 9.60301 2.85576 10.8969 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34589 1.56727 7.38939L1.92786 6.45667L3.79331 7.17783Z\" fill=\"currentColor\"/><Path d=\"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z\" 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,wBAA+uB,EAA/uB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qNAAqN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,CAAI,GAGzuB",
9
- "debugId": "89699AEB6A39D64A64756E2164756E21",
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,wBAAgvB,EAAhvB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sNAAsN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,CAAI,GAG1uB",
9
+ "debugId": "BD41B7525F26B7F164756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";import{Svg as C}from"react-native-svg";var n=({children:o,size:r=24,...p})=>{return l.createElement(C,{...p,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,{fillRule:"evenodd",clipRule:"evenodd",d:"M3.79331 7.17786L3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942L1.92786 6.45669L3.79331 7.17786Z",fill:"currentColor"}),e.createElement(t,{d:"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z",fill:"currentColor"}))},P=a;export{P as default,a as IconPinch};
1
+ import l from"react";import{Svg as C}from"react-native-svg";var n=({children:o,size:r=24,...p})=>{return l.createElement(C,{...p,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,{fillRule:"evenodd",clipRule:"evenodd",d:"M3.79331 7.17783L3.43273 8.11056C2.85576 9.60301 2.85576 10.8969 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34589 1.56727 7.38939L1.92786 6.45667L3.79331 7.17783Z",fill:"currentColor"}),e.createElement(t,{d:"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z",fill:"currentColor"}))},P=a;export{P as default,a as IconPinch};
2
2
 
3
- //# debugId=2C5AF3EAFA51651A64756E2164756E21
3
+ //# debugId=E4D6FC979233252664756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.79331 7.17786L3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942L1.92786 6.45669L3.79331 7.17786Z\" fill=\"currentColor\"/><Path d=\"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z\" 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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.79331 7.17783L3.43273 8.11056C2.85576 9.60301 2.85576 10.8969 3.43273 12.3894L3.79331 13.3221L1.92786 14.0433L1.56727 13.1106C0.810909 11.1541 0.810909 9.34589 1.56727 7.38939L1.92786 6.45667L3.79331 7.17783Z\" fill=\"currentColor\"/><Path d=\"M11.3871 8.21721L16.2669 5.29567C17.884 4.32756 19.9517 4.90208 20.8853 6.5789L21.916 8.43017C24.1475 12.4382 22.8232 17.5633 18.9581 19.8773C16.3597 21.4329 13.1441 21.3677 10.6063 19.7079L4.5 15.714L4.70388 14.3258C4.89131 13.0497 6.04085 12.1728 7.27146 12.3671L8.61013 12.5785L5.22927 6.50624C4.60687 5.38836 4.97623 3.95893 6.05426 3.31352C7.13228 2.66811 8.51075 3.05113 9.13315 4.16901L11.3871 8.21721Z\" 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,gBAA+uB,EAA/uB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qNAAqN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,CAAI,GAGzuB",
9
- "debugId": "2C5AF3EAFA51651A64756E2164756E21",
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,gBAAgvB,EAAhvB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sNAAsN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,CAAI,GAG1uB",
9
+ "debugId": "E4D6FC979233252664756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var P=Object.create;var{getPrototypeOf:g,defineProperty:n,getOwnPropertyNames:V,getOwnPropertyDescriptor:M}=Object,f=Object.prototype.hasOwnProperty;function H(r){return this[r]}var S,Z,i=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?S??=new WeakMap:Z??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?P(g(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of V(r))if(!f.call(C,p))n(C,p,{get:H.bind(r,p),enumerable:!0});if(t)m.set(r,C);return C},u=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of V(r))if(!f.call(o,t))n(o,t,{get:H.bind(r,t),enumerable:!(e=M(r,t))||e.enumerable})}return s.set(r,o),o},s;var h=(r)=>r;function y(r,o){this[r]=h.bind(null,o)}var B=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var F={};B(F,{CentralIconBase:()=>l});module.exports=u(F);var I=i(require("react")),d=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return I.default.createElement(d.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 b={};B(b,{default:()=>w,IconScript:()=>x});module.exports=u(b);var a=i(require("react"));var v=require("react-native-svg"),x=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(v.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 7H14V9H10V7ZM10 11V13H13V11H10Z",fill:"currentColor"}))},w=x;
1
+ var P=Object.create;var{getPrototypeOf:g,defineProperty:C,getOwnPropertyNames:c,getOwnPropertyDescriptor:v}=Object,d=Object.prototype.hasOwnProperty;function u(r){return this[r]}var M,S,H=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var m=o?M??=new WeakMap:S??=new WeakMap,f=m.get(r);if(f)return f}t=r!=null?P(g(r)):{};let l=o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t;for(let s of c(r))if(!d.call(l,s))C(l,s,{get:u.bind(r,s),enumerable:!0});if(e)m.set(r,l);return l},h=(r)=>{var o=(a??=new WeakMap).get(r),t;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!d.call(o,e))C(o,e,{get:u.bind(r,e),enumerable:!(t=v(r,e))||t.enumerable})}return a.set(r,o),o},a;var k=(r)=>r;function w(r,o){this[r]=k.bind(null,o)}var B=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0,configurable:!0,set:w.bind(o,t)})};var y={};B(y,{CentralIconBase:()=>i});module.exports=h(y);var I=H(require("react")),V=require("react-native-svg"),i=({children:r,size:o=24,...t})=>{return I.default.createElement(V.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 F={};B(F,{default:()=>L,IconScript:()=>x});module.exports=h(F);var n=H(require("react"));var p=require("react-native-svg"),x=(r)=>{return n.default.createElement(i,{...r},n.default.createElement(p.Path,{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),n.default.createElement(p.Path,{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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}),n.default.createElement(p.Path,{d:"M8 7.5H9.5L10.5 7L11.5 7.5H14",stroke:"white",strokeWidth:"1.5"}),n.default.createElement(p.Path,{d:"M8 11.5H9.5L10.5 11L11.5 11.5H14",stroke:"white",strokeWidth:"1.5"}))},L=x;
2
2
 
3
- //# debugId=833D79DAE46C41E564756E2164756E21
3
+ //# debugId=79E923208FAC217C64756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 7H14V9H10V7ZM10 11V13H13V11H10Z\" 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=\"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\" fill=\"currentColor\"/><Path 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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039Z\" fill=\"currentColor\"/><Path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/><Path d=\"M8 7.5H9.5L10.5 7L11.5 7.5H14\" stroke=\"white\" strokeWidth=\"1.5\"/><Path d=\"M8 11.5H9.5L10.5 11L11.5 11.5H14\" stroke=\"white\" strokeWidth=\"1.5\"/></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,wBAAiwB,EAAjwB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gqBAAgqB,KAAK,eAAc,CAAI,GAG3vB",
9
- "debugId": "833D79DAE46C41E564756E2164756E21",
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,wBAAolB,EAAplB,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,qKAAqK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gCAAgC,OAAO,QAAQ,YAAY,MAAK,EAAE,wBAAC,OAAD,CAAM,EAAE,mCAAmC,OAAO,QAAQ,YAAY,MAAK,CAAI,GAG9kB",
9
+ "debugId": "79E923208FAC217C64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return C.createElement(p,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 7H14V9H10V7ZM10 11V13H13V11H10Z",fill:"currentColor"}))},d=a;export{d as default,a as IconScript};
1
+ import C from"react";import{Svg as l}from"react-native-svg";var n=({children:e,size:r=24,...p})=>{return C.createElement(l,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},e)};import o from"react";import{Path as t}from"react-native-svg";var s=(e)=>{return o.createElement(n,{...e},o.createElement(t,{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),o.createElement(t,{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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039Z",fill:"currentColor"}),o.createElement(t,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}),o.createElement(t,{d:"M8 7.5H9.5L10.5 7L11.5 7.5H14",stroke:"white",strokeWidth:"1.5"}),o.createElement(t,{d:"M8 11.5H9.5L10.5 11L11.5 11.5H14",stroke:"white",strokeWidth:"1.5"}))},I=s;export{I as default,s as IconScript};
2
2
 
3
- //# debugId=05F01C51A7ECD15C64756E2164756E21
3
+ //# debugId=901CA984F8ED812464756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 7H14V9H10V7ZM10 11V13H13V11H10Z\" 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=\"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\" fill=\"currentColor\"/><Path 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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039Z\" fill=\"currentColor\"/><Path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/><Path d=\"M8 7.5H9.5L10.5 7L11.5 7.5H14\" stroke=\"white\" strokeWidth=\"1.5\"/><Path d=\"M8 11.5H9.5L10.5 11L11.5 11.5H14\" stroke=\"white\" strokeWidth=\"1.5\"/></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,gBAAiwB,EAAjwB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,gqBAAgqB,KAAK,eAAc,CAAI,GAG3vB",
9
- "debugId": "05F01C51A7ECD15C64756E2164756E21",
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,gBAAolB,EAAplB,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qKAAqK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gCAAgC,OAAO,QAAQ,YAAY,MAAK,EAAE,gBAAC,EAAD,CAAM,EAAE,mCAAmC,OAAO,QAAQ,YAAY,MAAK,CAAI,GAG9kB",
9
+ "debugId": "901CA984F8ED812464756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var P=Object.create;var{getPrototypeOf:g,defineProperty:n,getOwnPropertyNames:f,getOwnPropertyDescriptor:S}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var h,y,B=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?h??=new WeakMap:y??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?P(g(r)):{};let C=o||!r||!r.__esModule?n(e,"default",{value:r,enumerable:!0}):e;for(let p of f(r))if(!i.call(C,p))n(C,p,{get:u.bind(r,p),enumerable:!0});if(t)m.set(r,C);return C},I=(r)=>{var o=(s??=new WeakMap).get(r),e;if(o)return o;if(o=n({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of f(r))if(!i.call(o,t))n(o,t,{get:u.bind(r,t),enumerable:!(e=S(r,t))||e.enumerable})}return s.set(r,o),o},s;var F=(r)=>r;function b(r,o){this[r]=F.bind(null,o)}var V=(r,o)=>{for(var e in o)n(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var M={};V(M,{CentralIconBase:()=>l});module.exports=I(M);var d=B(require("react")),v=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return d.default.createElement(v.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={};V(Z,{default:()=>w,IconScript2:()=>H});module.exports=I(Z);var a=B(require("react"));var x=require("react-native-svg"),H=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(x.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z",fill:"currentColor"}))},w=H;
1
+ var v=Object.create;var{getPrototypeOf:H,defineProperty:e,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 C=o||!r||!r.__esModule?e(t,"default",{value:r,enumerable:!0}):t;for(let a of i(r))if(!u.call(C,a))e(C,a,{get:B.bind(r,a),enumerable:!0});if(n)f.set(r,C);return C},V=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))e(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 x=(r,o)=>{for(var t in o)e(r,t,{get:o[t],enumerable:!0,configurable:!0,set:b.bind(o,t)})};var M={};x(M,{CentralIconBase:()=>m});module.exports=V(M);var P=I(require("react")),g=require("react-native-svg"),m=({children:r,size:o=24,...t})=>{return P.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={};x(Z,{default:()=>w,IconScript2:()=>d});module.exports=V(Z);var p=I(require("react"));var l=require("react-native-svg"),d=(r)=>{return p.default.createElement(m,{...r},p.default.createElement(l.Path,{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),p.default.createElement(l.Path,{d:"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z",fill:"currentColor"}),p.default.createElement(l.Path,{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},w=d;
2
2
 
3
- //# debugId=A34D88DEEA0E92CA64756E2164756E21
3
+ //# debugId=A60B63C7067FBA0C64756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z\" 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.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\" fill=\"currentColor\"/><Path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V6C5 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.5V9H18V4.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,wBAA8tB,EAA9tB,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6nBAA6nB,KAAK,eAAc,CAAI,GAGxtB",
9
- "debugId": "A34D88DEEA0E92CA64756E2164756E21",
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,wBAAyb,EAAzb,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,CAAI,GAGnb",
9
+ "debugId": "A60B63C7067FBA0C64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import C from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...n})=>{return C.createElement(p,{...n,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z",fill:"currentColor"}))},v=a;export{v as default,a as IconScript2};
1
+ import C from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...p})=>{return C.createElement(l,{...p,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(e,{...t},o.createElement(n,{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",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 18V15H5V6C5 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.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},P=a;export{P as default,a as IconScript2};
2
2
 
3
- //# debugId=70D9F9244E4D83B564756E2164756E21
3
+ //# debugId=D2EF62125F793E7E64756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H3V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15L15.002 20.9996C16.6573 20.9996 18 19.6569 18 18.0016V10H22V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4802 5.1055 18.7346 5.00007 18.9997 5C19.265 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V8H18V6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z\" 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.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\" fill=\"currentColor\"/><Path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V15H5V6C5 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.5V9H18V4.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,gBAA8tB,EAA9tB,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,6nBAA6nB,KAAK,eAAc,CAAI,GAGxtB",
9
- "debugId": "70D9F9244E4D83B564756E2164756E21",
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,gBAAyb,EAAzb,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,CAAI,GAGnb",
9
+ "debugId": "D2EF62125F793E7E64756E2164756E21",
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