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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconHandTouch: React.FC<CentralIconBaseProps>;
4
+ export default IconHandTouch;
@@ -0,0 +1,3 @@
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,f=Object.prototype.hasOwnProperty;function h(r){return this[r]}var y,P,V=(r,t,e)=>{var o=r!=null&&typeof r==="object";if(o){var n=t?y??=new WeakMap:P??=new WeakMap,p=n.get(r);if(p)return p}e=r!=null?B(I(r)):{};let C=t||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e;for(let s of u(r))if(!f.call(C,s))a(C,s,{get:h.bind(r,s),enumerable:!0});if(o)n.set(r,C);return C},g=(r)=>{var t=(m??=new WeakMap).get(r),e;if(t)return t;if(t=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of u(r))if(!f.call(t,o))a(t,o,{get:h.bind(r,o),enumerable:!(e=w(r,o))||e.enumerable})}return m.set(r,t),t},m;var b=(r)=>r;function L(r,t){this[r]=b.bind(null,t)}var d=(r,t)=>{for(var e in t)a(r,e,{get:t[e],enumerable:!0,configurable:!0,set:L.bind(t,e)})};var v={};d(v,{CentralIconBase:()=>i});module.exports=g(v);var c=V(require("react")),i=({children:r,size:t=24,ariaLabel:e,color:o,ariaHidden:n=!0,style:p,...C})=>{return c.default.createElement("svg",{...C,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...p}},e&&!n&&c.default.createElement("title",null,e),r)};var G={};d(G,{default:()=>H,IconHandTouch:()=>x});module.exports=g(G);var l=V(require("react"));var x=(r)=>{return l.default.createElement(i,{...r,ariaLabel:"hand-touch, input, area, target"},l.default.createElement("path",{d:"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.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.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z",fill:"currentColor"}),l.default.createElement("path",{d:"M21 13.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 17H3V3H21V13.626Z",fill:"currentColor"}))},H=x;
2
+
3
+ //# debugId=C5C22EFF26B5EB2F64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconHandTouch/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHandTouch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"hand-touch, input, area, target\"><path d=\"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.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.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z\" fill=\"currentColor\"/><path d=\"M21 13.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 17H3V3H21V13.626Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHandTouch;\n"
7
+ ],
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAAspC,EAAtpC,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,mvBAAmvB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,CAAI,GAGhpC",
9
+ "debugId": "C5C22EFF26B5EB2F64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";var a=({children:t,size:r=24,ariaLabel:n,color:p,ariaHidden:e=!0,style:l,...s})=>{return C.createElement("svg",{...s,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:p,...l}},n&&!e&&C.createElement("title",null,n),t)};import o from"react";var c=(t)=>{return o.createElement(a,{...t,ariaLabel:"hand-touch, input, area, target"},o.createElement("path",{d:"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.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.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z",fill:"currentColor"}),o.createElement("path",{d:"M21 13.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 17H3V3H21V13.626Z",fill:"currentColor"}))},V=c;export{V as default,c as IconHandTouch};
2
+
3
+ //# debugId=8AD044DB6037257B64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconHandTouch/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconHandTouch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"hand-touch, input, area, target\"><path d=\"M15.377 8.23438H15.373L15.4053 8.23633C15.4336 8.23921 15.4614 8.24486 15.4893 8.24902L15.4854 8.24805C16.365 8.37743 17.0408 9.13326 17.041 10.0488V13.1904C17.8981 13.3837 19.2222 13.8452 20.1592 14.3125C20.1391 14.3026 20.119 14.2922 20.0986 14.2822C20.1287 14.297 20.1591 14.3104 20.1885 14.3252C20.2034 14.3327 20.2177 14.3411 20.2324 14.3486C20.223 14.3438 20.2136 14.3388 20.2041 14.334C20.3322 14.3988 20.453 14.4632 20.5635 14.5273C21.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.22656C15.2713 8.22656 15.3246 8.22985 15.377 8.23438Z\" fill=\"currentColor\"/><path d=\"M21 13.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 17H3V3H21V13.626Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHandTouch;\n"
7
+ ],
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAspC,EAAtpC,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,mvBAAmvB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,CAAI,GAGhpC",
9
+ "debugId": "8AD044DB6037257B64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:L,getOwnPropertyNames:c,getOwnPropertyDescriptor:w}=Object,f=Object.prototype.hasOwnProperty;function u(r){return this[r]}var b,y,d=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var C=o?b??=new WeakMap:y??=new WeakMap,a=C.get(r);if(a)return a}t=r!=null?B(I(r)):{};let l=o||!r||!r.__esModule?L(t,"default",{value:r,enumerable:!0}):t;for(let p of c(r))if(!f.call(l,p))L(l,p,{get:u.bind(r,p),enumerable:!0});if(e)C.set(r,l);return l},h=(r)=>{var o=(m??=new WeakMap).get(r),t;if(o)return o;if(o=L({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!f.call(o,e))L(o,e,{get:u.bind(r,e),enumerable:!(t=w(r,e))||t.enumerable})}return m.set(r,o),o},m;var M=(r)=>r;function P(r,o){this[r]=M.bind(null,o)}var g=(r,o)=>{for(var t in o)L(r,t,{get:o[t],enumerable:!0,configurable:!0,set:P.bind(o,t)})};var Z={};g(Z,{CentralIconBase:()=>i});module.exports=h(Z);var s=d(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:C=!0,style:a,...l})=>{return s.default.createElement("svg",{...l,"aria-hidden":C,role:C?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...a}},t&&!C&&s.default.createElement("title",null,t),r)};var v={};g(v,{default:()=>G,IconMagicHands:()=>x});module.exports=h(v);var n=d(require("react"));var x=(r)=>{return n.default.createElement(i,{...r,ariaLabel:"magic-hands, rainbow-hands"},n.default.createElement("path",{d:"M4.64318 8.85197C5.86614 5.99787 8.7004 4 12.0001 4C15.2999 4 18.1341 5.99787 19.3571 8.85197L19.554 9.31155L20.4732 8.91769L20.2763 8.45811C18.9014 5.2494 15.714 3 12.0001 3C8.28627 3 5.09892 5.2494 3.72401 8.45811L3.52708 8.91769L4.44625 9.31155L4.64318 8.85197Z",fill:"currentColor"}),n.default.createElement("path",{d:"M6.56835 9.44772C7.52797 7.40929 9.59998 6 12.0001 6C14.4003 6 16.4723 7.40929 17.4319 9.44772L17.6449 9.90009L18.5496 9.47416L18.3367 9.02179C17.2183 6.64611 14.802 5 12.0001 5C9.19832 5 6.78198 6.64611 5.66359 9.02179L5.45063 9.47416L6.35539 9.90009L6.56835 9.44772Z",fill:"currentColor"}),n.default.createElement("path",{d:"M8.50026 10.0616C9.18346 8.831 10.4951 8 12.0001 8C13.5052 8 14.8168 8.831 15.5 10.0616L15.7427 10.4987L16.617 10.0133L16.3743 9.57619C15.5219 8.04087 13.8829 7 12.0001 7C10.1173 7 8.47835 8.04087 7.62596 9.57619L7.38327 10.0133L8.25756 10.4987L8.50026 10.0616Z",fill:"currentColor"}),n.default.createElement("path",{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5706C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5607 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),n.default.createElement("path",{d:"M19.9432 11.5706C18.3214 10.9804 16.5282 11.8166 15.9379 13.4384L15.8341 13.7236L14.1896 13.1251L13.4811 15.0716C12.82 16.888 13.7566 18.8965 15.573 19.5576L16.5127 19.8996C18.3291 20.5607 20.3375 19.6242 20.9987 17.8078L21.811 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5706Z",fill:"currentColor"}))},G=x;
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:L,getOwnPropertyNames:c,getOwnPropertyDescriptor:w}=Object,f=Object.prototype.hasOwnProperty;function u(r){return this[r]}var b,y,d=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var C=o?b??=new WeakMap:y??=new WeakMap,a=C.get(r);if(a)return a}t=r!=null?B(I(r)):{};let l=o||!r||!r.__esModule?L(t,"default",{value:r,enumerable:!0}):t;for(let p of c(r))if(!f.call(l,p))L(l,p,{get:u.bind(r,p),enumerable:!0});if(e)C.set(r,l);return l},h=(r)=>{var o=(m??=new WeakMap).get(r),t;if(o)return o;if(o=L({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of c(r))if(!f.call(o,e))L(o,e,{get:u.bind(r,e),enumerable:!(t=w(r,e))||t.enumerable})}return m.set(r,o),o},m;var M=(r)=>r;function P(r,o){this[r]=M.bind(null,o)}var g=(r,o)=>{for(var t in o)L(r,t,{get:o[t],enumerable:!0,configurable:!0,set:P.bind(o,t)})};var Z={};g(Z,{CentralIconBase:()=>i});module.exports=h(Z);var s=d(require("react")),i=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:C=!0,style:a,...l})=>{return s.default.createElement("svg",{...l,"aria-hidden":C,role:C?void 0:"img",width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:e,...a}},t&&!C&&s.default.createElement("title",null,t),r)};var v={};g(v,{default:()=>G,IconMagicHands:()=>x});module.exports=h(v);var n=d(require("react"));var x=(r)=>{return n.default.createElement(i,{...r,ariaLabel:"magic-hands, rainbow-hands"},n.default.createElement("path",{d:"M4.64344 8.85197C5.86641 5.99787 8.70066 4 12.0004 4C15.3001 4 18.1344 5.99787 19.3574 8.85197L19.5543 9.31155L20.4735 8.91769L20.2765 8.45811C18.9016 5.2494 15.7143 3 12.0004 3C8.28653 3 5.09918 5.2494 3.72427 8.45811L3.52734 8.91769L4.44651 9.31155L4.64344 8.85197Z",fill:"currentColor"}),n.default.createElement("path",{d:"M6.56694 9.44772C7.52656 7.40929 9.59857 6 11.9987 6C14.3989 6 16.4709 7.40929 17.4305 9.44772L17.6435 9.90009L18.5482 9.47416L18.3353 9.02179C17.2169 6.64611 14.8005 5 11.9987 5C9.19691 5 6.78057 6.64611 5.66218 9.02179L5.44922 9.47416L6.35398 9.90009L6.56694 9.44772Z",fill:"currentColor"}),n.default.createElement("path",{d:"M8.4998 10.0616C9.18301 8.831 10.4946 8 11.9997 8C13.5047 8 14.8164 8.831 15.4996 10.0616L15.7423 10.4987L16.6166 10.0133L16.3739 9.57619C15.5215 8.04087 13.8825 7 11.9997 7C10.1169 7 8.4779 8.04087 7.62551 9.57619L7.38281 10.0133L8.25711 10.4987L8.4998 10.0616Z",fill:"currentColor"}),n.default.createElement("path",{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),n.default.createElement("path",{d:"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.19 13.1251L13.4816 15.0716C12.8204 16.888 13.757 18.8965 15.5734 19.5576L16.5131 19.8996C18.3295 20.5608 20.338 19.6242 20.9991 17.8078L21.8114 15.576C22.4017 13.9542 21.5655 12.1609 19.9437 11.5707Z",fill:"currentColor"}))},G=x;
2
2
 
3
- //# debugId=7F4DEB0296526F3F64756E2164756E21
3
+ //# debugId=E042A0F06F5DE6D864756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicHands/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicHands: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"magic-hands, rainbow-hands\"><path d=\"M4.64318 8.85197C5.86614 5.99787 8.7004 4 12.0001 4C15.2999 4 18.1341 5.99787 19.3571 8.85197L19.554 9.31155L20.4732 8.91769L20.2763 8.45811C18.9014 5.2494 15.714 3 12.0001 3C8.28627 3 5.09892 5.2494 3.72401 8.45811L3.52708 8.91769L4.44625 9.31155L4.64318 8.85197Z\" fill=\"currentColor\"/><path d=\"M6.56835 9.44772C7.52797 7.40929 9.59998 6 12.0001 6C14.4003 6 16.4723 7.40929 17.4319 9.44772L17.6449 9.90009L18.5496 9.47416L18.3367 9.02179C17.2183 6.64611 14.802 5 12.0001 5C9.19832 5 6.78198 6.64611 5.66359 9.02179L5.45063 9.47416L6.35539 9.90009L6.56835 9.44772Z\" fill=\"currentColor\"/><path d=\"M8.50026 10.0616C9.18346 8.831 10.4951 8 12.0001 8C13.5052 8 14.8168 8.831 15.5 10.0616L15.7427 10.4987L16.617 10.0133L16.3743 9.57619C15.5219 8.04087 13.8829 7 12.0001 7C10.1173 7 8.47835 8.04087 7.62596 9.57619L7.38327 10.0133L8.25756 10.4987L8.50026 10.0616Z\" fill=\"currentColor\"/><path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5706C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5607 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><path d=\"M19.9432 11.5706C18.3214 10.9804 16.5282 11.8166 15.9379 13.4384L15.8341 13.7236L14.1896 13.1251L13.4811 15.0716C12.82 16.888 13.7566 18.8965 15.573 19.5576L16.5127 19.8996C18.3291 20.5607 20.3375 19.6242 20.9987 17.8078L21.811 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5706Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicHands: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"magic-hands, rainbow-hands\"><path d=\"M4.64344 8.85197C5.86641 5.99787 8.70066 4 12.0004 4C15.3001 4 18.1344 5.99787 19.3574 8.85197L19.5543 9.31155L20.4735 8.91769L20.2765 8.45811C18.9016 5.2494 15.7143 3 12.0004 3C8.28653 3 5.09918 5.2494 3.72427 8.45811L3.52734 8.91769L4.44651 9.31155L4.64344 8.85197Z\" fill=\"currentColor\"/><path d=\"M6.56694 9.44772C7.52656 7.40929 9.59857 6 11.9987 6C14.3989 6 16.4709 7.40929 17.4305 9.44772L17.6435 9.90009L18.5482 9.47416L18.3353 9.02179C17.2169 6.64611 14.8005 5 11.9987 5C9.19691 5 6.78057 6.64611 5.66218 9.02179L5.44922 9.47416L6.35398 9.90009L6.56694 9.44772Z\" fill=\"currentColor\"/><path d=\"M8.4998 10.0616C9.18301 8.831 10.4946 8 11.9997 8C13.5047 8 14.8164 8.831 15.4996 10.0616L15.7423 10.4987L16.6166 10.0133L16.3739 9.57619C15.5215 8.04087 13.8825 7 11.9997 7C10.1169 7 8.4779 8.04087 7.62551 9.57619L7.38281 10.0133L8.25711 10.4987L8.4998 10.0616Z\" fill=\"currentColor\"/><path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><path d=\"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.19 13.1251L13.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": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,0ECjCY,IAAlB,sBAGO,IAAM,EAAiD,CAAC,IAAU,CACvE,OAAO,wBAAojD,EAApjD,IAAqB,EAAO,UAAU,8BAA6B,wBAAC,OAAD,CAAM,EAAE,2QAA2Q,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wQAAwQ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6RAA6R,KAAK,eAAc,CAAI,GAG9iD",
9
- "debugId": "7F4DEB0296526F3F64756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,0ECjCY,IAAlB,sBAGO,IAAM,EAAiD,CAAC,IAAU,CACvE,OAAO,wBAA0jD,EAA1jD,IAAqB,EAAO,UAAU,8BAA6B,wBAAC,OAAD,CAAM,EAAE,8QAA8Q,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gRAAgR,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,yQAAyQ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8RAA8R,KAAK,eAAc,CAAI,GAGpjD",
9
+ "debugId": "E042A0F06F5DE6D864756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import C from"react";var l=({children:t,size:r=24,ariaLabel:n,color:L,ariaHidden:e=!0,style:a,...p})=>{return C.createElement("svg",{...p,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:L,...a}},n&&!e&&C.createElement("title",null,n),t)};import o from"react";var s=(t)=>{return o.createElement(l,{...t,ariaLabel:"magic-hands, rainbow-hands"},o.createElement("path",{d:"M4.64318 8.85197C5.86614 5.99787 8.7004 4 12.0001 4C15.2999 4 18.1341 5.99787 19.3571 8.85197L19.554 9.31155L20.4732 8.91769L20.2763 8.45811C18.9014 5.2494 15.714 3 12.0001 3C8.28627 3 5.09892 5.2494 3.72401 8.45811L3.52708 8.91769L4.44625 9.31155L4.64318 8.85197Z",fill:"currentColor"}),o.createElement("path",{d:"M6.56835 9.44772C7.52797 7.40929 9.59998 6 12.0001 6C14.4003 6 16.4723 7.40929 17.4319 9.44772L17.6449 9.90009L18.5496 9.47416L18.3367 9.02179C17.2183 6.64611 14.802 5 12.0001 5C9.19832 5 6.78198 6.64611 5.66359 9.02179L5.45063 9.47416L6.35539 9.90009L6.56835 9.44772Z",fill:"currentColor"}),o.createElement("path",{d:"M8.50026 10.0616C9.18346 8.831 10.4951 8 12.0001 8C13.5052 8 14.8168 8.831 15.5 10.0616L15.7427 10.4987L16.617 10.0133L16.3743 9.57619C15.5219 8.04087 13.8829 7 12.0001 7C10.1173 7 8.47835 8.04087 7.62596 9.57619L7.38327 10.0133L8.25756 10.4987L8.50026 10.0616Z",fill:"currentColor"}),o.createElement("path",{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5706C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5607 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),o.createElement("path",{d:"M19.9432 11.5706C18.3214 10.9804 16.5282 11.8166 15.9379 13.4384L15.8341 13.7236L14.1896 13.1251L13.4811 15.0716C12.82 16.888 13.7566 18.8965 15.573 19.5576L16.5127 19.8996C18.3291 20.5607 20.3375 19.6242 20.9987 17.8078L21.811 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5706Z",fill:"currentColor"}))},d=s;export{d as default,s as IconMagicHands};
1
+ import C from"react";var l=({children:t,size:r=24,ariaLabel:n,color:L,ariaHidden:e=!0,style:a,...p})=>{return C.createElement("svg",{...p,"aria-hidden":e,role:e?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:L,...a}},n&&!e&&C.createElement("title",null,n),t)};import o from"react";var s=(t)=>{return o.createElement(l,{...t,ariaLabel:"magic-hands, rainbow-hands"},o.createElement("path",{d:"M4.64344 8.85197C5.86641 5.99787 8.70066 4 12.0004 4C15.3001 4 18.1344 5.99787 19.3574 8.85197L19.5543 9.31155L20.4735 8.91769L20.2765 8.45811C18.9016 5.2494 15.7143 3 12.0004 3C8.28653 3 5.09918 5.2494 3.72427 8.45811L3.52734 8.91769L4.44651 9.31155L4.64344 8.85197Z",fill:"currentColor"}),o.createElement("path",{d:"M6.56694 9.44772C7.52656 7.40929 9.59857 6 11.9987 6C14.3989 6 16.4709 7.40929 17.4305 9.44772L17.6435 9.90009L18.5482 9.47416L18.3353 9.02179C17.2169 6.64611 14.8005 5 11.9987 5C9.19691 5 6.78057 6.64611 5.66218 9.02179L5.44922 9.47416L6.35398 9.90009L6.56694 9.44772Z",fill:"currentColor"}),o.createElement("path",{d:"M8.4998 10.0616C9.18301 8.831 10.4946 8 11.9997 8C13.5047 8 14.8164 8.831 15.4996 10.0616L15.7423 10.4987L16.6166 10.0133L16.3739 9.57619C15.5215 8.04087 13.8825 7 11.9997 7C10.1169 7 8.4779 8.04087 7.62551 9.57619L7.38281 10.0133L8.25711 10.4987L8.4998 10.0616Z",fill:"currentColor"}),o.createElement("path",{d:"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z",fill:"currentColor"}),o.createElement("path",{d:"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.19 13.1251L13.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"}))},d=s;export{d as default,s as IconMagicHands};
2
2
 
3
- //# debugId=1F18C87B9C55675E64756E2164756E21
3
+ //# debugId=E65A57C77462C9D564756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMagicHands/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicHands: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"magic-hands, rainbow-hands\"><path d=\"M4.64318 8.85197C5.86614 5.99787 8.7004 4 12.0001 4C15.2999 4 18.1341 5.99787 19.3571 8.85197L19.554 9.31155L20.4732 8.91769L20.2763 8.45811C18.9014 5.2494 15.714 3 12.0001 3C8.28627 3 5.09892 5.2494 3.72401 8.45811L3.52708 8.91769L4.44625 9.31155L4.64318 8.85197Z\" fill=\"currentColor\"/><path d=\"M6.56835 9.44772C7.52797 7.40929 9.59998 6 12.0001 6C14.4003 6 16.4723 7.40929 17.4319 9.44772L17.6449 9.90009L18.5496 9.47416L18.3367 9.02179C17.2183 6.64611 14.802 5 12.0001 5C9.19832 5 6.78198 6.64611 5.66359 9.02179L5.45063 9.47416L6.35539 9.90009L6.56835 9.44772Z\" fill=\"currentColor\"/><path d=\"M8.50026 10.0616C9.18346 8.831 10.4951 8 12.0001 8C13.5052 8 14.8168 8.831 15.5 10.0616L15.7427 10.4987L16.617 10.0133L16.3743 9.57619C15.5219 8.04087 13.8829 7 12.0001 7C10.1173 7 8.47835 8.04087 7.62596 9.57619L7.38327 10.0133L8.25756 10.4987L8.50026 10.0616Z\" fill=\"currentColor\"/><path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5706C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5607 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><path d=\"M19.9432 11.5706C18.3214 10.9804 16.5282 11.8166 15.9379 13.4384L15.8341 13.7236L14.1896 13.1251L13.4811 15.0716C12.82 16.888 13.7566 18.8965 15.573 19.5576L16.5127 19.8996C18.3291 20.5607 20.3375 19.6242 20.9987 17.8078L21.811 15.576C22.4012 13.9542 21.565 12.1609 19.9432 11.5706Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconMagicHands: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"magic-hands, rainbow-hands\"><path d=\"M4.64344 8.85197C5.86641 5.99787 8.70066 4 12.0004 4C15.3001 4 18.1344 5.99787 19.3574 8.85197L19.5543 9.31155L20.4735 8.91769L20.2765 8.45811C18.9016 5.2494 15.7143 3 12.0004 3C8.28653 3 5.09918 5.2494 3.72427 8.45811L3.52734 8.91769L4.44651 9.31155L4.64344 8.85197Z\" fill=\"currentColor\"/><path d=\"M6.56694 9.44772C7.52656 7.40929 9.59857 6 11.9987 6C14.3989 6 16.4709 7.40929 17.4305 9.44772L17.6435 9.90009L18.5482 9.47416L18.3353 9.02179C17.2169 6.64611 14.8005 5 11.9987 5C9.19691 5 6.78057 6.64611 5.66218 9.02179L5.44922 9.47416L6.35398 9.90009L6.56694 9.44772Z\" fill=\"currentColor\"/><path d=\"M8.4998 10.0616C9.18301 8.831 10.4946 8 11.9997 8C13.5047 8 14.8164 8.831 15.4996 10.0616L15.7423 10.4987L16.6166 10.0133L16.3739 9.57619C15.5215 8.04087 13.8825 7 11.9997 7C10.1169 7 8.4779 8.04087 7.62551 9.57619L7.38281 10.0133L8.25711 10.4987L8.4998 10.0616Z\" fill=\"currentColor\"/><path d=\"M8.06239 13.4384C7.4721 11.8166 5.67884 10.9804 4.05704 11.5707C2.43523 12.1609 1.59902 13.9542 2.18931 15.576L3.00161 17.8078C3.66273 19.6242 5.67118 20.5608 7.4876 19.8996L8.4273 19.5576C10.2437 18.8965 11.1803 16.888 10.5191 15.0716L9.81068 13.1251L8.16622 13.7236L8.06239 13.4384Z\" fill=\"currentColor\"/><path d=\"M19.9437 11.5707C18.3219 10.9804 16.5286 11.8166 15.9383 13.4384L15.8345 13.7236L14.19 13.1251L13.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,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAojD,EAApjD,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,2QAA2Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wQAAwQ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6RAA6R,KAAK,eAAc,CAAI,GAG9iD",
9
- "debugId": "1F18C87B9C55675E64756E2164756E21",
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA0jD,EAA1jD,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,8QAA8Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gRAAgR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yQAAyQ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+RAA+R,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8RAA8R,KAAK,eAAc,CAAI,GAGpjD",
9
+ "debugId": "E65A57C77462C9D564756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:L,getOwnPropertyDescriptor:P}=Object,f=Object.prototype.hasOwnProperty;function u(e){return this[e]}var v,w,d=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?v??=new WeakMap:w??=new WeakMap,a=n.get(e);if(a)return a}o=e!=null?B(I(e)):{};let l=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let s of L(e))if(!f.call(l,s))p(l,s,{get:u.bind(e,s),enumerable:!0});if(t)n.set(e,l);return l},h=(e)=>{var r=(m??=new WeakMap).get(e),o;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of L(e))if(!f.call(r,t))p(r,t,{get:u.bind(e,t),enumerable:!(o=P(e,t))||o.enumerable})}return m.set(e,r),r},m;var y=(e)=>e;function b(e,r){this[e]=y.bind(null,r)}var g=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:b.bind(r,o)})};var G={};g(G,{CentralIconBase:()=>c});module.exports=h(G);var i=d(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:a,...l})=>{return i.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...a}},o&&!n&&i.default.createElement("title",null,o),e)};var S={};g(S,{default:()=>V,IconPinch:()=>x});module.exports=h(S);var C=d(require("react"));var x=(e)=>{return C.default.createElement(c,{...e,ariaLabel:"pinch"},C.default.createElement("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"}),C.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.67052 7.19574L2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.25309 1.55793 7.30593L1.73637 6.83886L2.67052 7.19574Z",fill:"currentColor"}))},V=x;
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:L,getOwnPropertyDescriptor:P}=Object,f=Object.prototype.hasOwnProperty;function u(e){return this[e]}var v,w,d=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?v??=new WeakMap:w??=new WeakMap,a=n.get(e);if(a)return a}o=e!=null?B(I(e)):{};let l=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let s of L(e))if(!f.call(l,s))p(l,s,{get:u.bind(e,s),enumerable:!0});if(t)n.set(e,l);return l},h=(e)=>{var r=(m??=new WeakMap).get(e),o;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of L(e))if(!f.call(r,t))p(r,t,{get:u.bind(e,t),enumerable:!(o=P(e,t))||o.enumerable})}return m.set(e,r),r},m;var y=(e)=>e;function b(e,r){this[e]=y.bind(null,r)}var g=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:b.bind(r,o)})};var G={};g(G,{CentralIconBase:()=>c});module.exports=h(G);var i=d(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:a,...l})=>{return i.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...a}},o&&!n&&i.default.createElement("title",null,o),e)};var S={};g(S,{default:()=>V,IconPinch:()=>x});module.exports=h(S);var C=d(require("react"));var x=(e)=>{return C.default.createElement(c,{...e,ariaLabel:"pinch"},C.default.createElement("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"}),C.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.67052 7.19575L2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30594L1.73637 6.83887L2.67052 7.19575Z",fill:"currentColor"}))},V=x;
2
2
 
3
- //# debugId=995D55ACC0D7F65364756E2164756E21
3
+ //# debugId=5A0C5CC154D788D264756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPinch/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPinch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pinch\"><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\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.67052 7.19574L2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.25309 1.55793 7.30593L1.73637 6.83886L2.67052 7.19574Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPinch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pinch\"><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\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.67052 7.19575L2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30594L1.73637 6.83887L2.67052 7.19575Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
7
7
  ],
8
- "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,qECjCY,IAAlB,sBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAAkwB,EAAlwB,IAAqB,EAAO,UAAU,SAAQ,wBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sNAAsN,KAAK,eAAc,CAAI,GAG5vB",
9
- "debugId": "995D55ACC0D7F65364756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,qECjCY,IAAlB,sBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,wBAAiwB,EAAjwB,IAAqB,EAAO,UAAU,SAAQ,wBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qNAAqN,KAAK,eAAc,CAAI,GAG3vB",
9
+ "debugId": "5A0C5CC154D788D264756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:C,...s})=>{return l.createElement("svg",{...s,"aria-hidden":o,role:o?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...C}},n&&!o&&l.createElement("title",null,n),r)};import t from"react";var i=(r)=>{return t.createElement(p,{...r,ariaLabel:"pinch"},t.createElement("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"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.67052 7.19574L2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.25309 1.55793 7.30593L1.73637 6.83886L2.67052 7.19574Z",fill:"currentColor"}))},d=i;export{d as default,i as IconPinch};
1
+ import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:C,...s})=>{return l.createElement("svg",{...s,"aria-hidden":o,role:o?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...C}},n&&!o&&l.createElement("title",null,n),r)};import t from"react";var i=(r)=>{return t.createElement(p,{...r,ariaLabel:"pinch"},t.createElement("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"}),t.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.67052 7.19575L2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30594L1.73637 6.83887L2.67052 7.19575Z",fill:"currentColor"}))},d=i;export{d as default,i as IconPinch};
2
2
 
3
- //# debugId=3F95735BEE0F7DFE64756E2164756E21
3
+ //# debugId=53602388950C5D8E64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPinch/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPinch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pinch\"><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\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.67052 7.19574L2.49207 7.66282C1.83598 9.38016 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.25309 1.55793 7.30593L1.73637 6.83886L2.67052 7.19574Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPinch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pinch\"><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\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.67052 7.19575L2.49207 7.66283C1.83598 9.38017 1.83598 10.9011 2.49207 12.6184L2.67052 13.0855L1.73637 13.4424L1.55793 12.9753C0.814025 11.0282 0.814025 9.2531 1.55793 7.30594L1.73637 6.83887L2.67052 7.19575Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconPinch;\n"
7
7
  ],
8
- "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAkwB,EAAlwB,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sNAAsN,KAAK,eAAc,CAAI,GAG5vB",
9
- "debugId": "3F95735BEE0F7DFE64756E2164756E21",
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAiwB,EAAjwB,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,EAAE,4ZAA4Z,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qNAAqN,KAAK,eAAc,CAAI,GAG3vB",
9
+ "debugId": "53602388950C5D8E64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var H=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:V,getOwnPropertyDescriptor:h}=Object,f=Object.prototype.hasOwnProperty;function u(e){return this[e]}var v,w,d=(e,r,t)=>{var o=e!=null&&typeof e==="object";if(o){var n=r?v??=new WeakMap:w??=new WeakMap,C=n.get(e);if(C)return C}t=e!=null?H(I(e)):{};let l=r||!e||!e.__esModule?p(t,"default",{value:e,enumerable:!0}):t;for(let a of V(e))if(!f.call(l,a))p(l,a,{get:u.bind(e,a),enumerable:!0});if(o)n.set(e,l);return l},g=(e)=>{var r=(m??=new WeakMap).get(e),t;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of V(e))if(!f.call(r,o))p(r,o,{get:u.bind(e,o),enumerable:!(t=h(e,o))||t.enumerable})}return m.set(e,r),r},m;var y=(e)=>e;function P(e,r){this[e]=y.bind(null,r)}var x=(e,r)=>{for(var t in r)p(e,t,{get:r[t],enumerable:!0,configurable:!0,set:P.bind(r,t)})};var b={};x(b,{CentralIconBase:()=>c});module.exports=g(b);var s=d(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:C,...l})=>{return s.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...C}},t&&!n&&s.default.createElement("title",null,t),e)};var M={};x(M,{default:()=>S,IconScript:()=>B});module.exports=g(M);var i=d(require("react"));var B=(e)=>{return i.default.createElement(c,{...e,ariaLabel:"script, paper, page, contract, file, document, skills"},i.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22 5.5C22 4.13453 20.8654 3 19.5 3C17.0501 3.00179 14.6001 3.00131 12.1501 3.00082C11.017 3.00059 9.88359 3.00037 8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C16.8811 21 18 19.8811 18 18.502V10H22V5.5ZM19.4976 4C19.1006 4.00063 18.7199 4.15867 18.4393 4.43934C18.1581 4.72072 18 5.1022 18 5.5V9H21V5.5C21 4.68682 20.3132 4 19.5 4L19.4976 4ZM13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3059 19.7427 13.1612 19.4468 13.0787 19.1261C13.0273 18.9266 13 18.7174 13 18.502L13 16ZM10 7H14V8H10V7ZM10 10H13V11H10V10Z",fill:"currentColor"}))},S=B;
1
+ var h=Object.create;var{getPrototypeOf:x,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:B}=Object,f=Object.prototype.hasOwnProperty;function u(r){return this[r]}var I,v,L=(r,e,t)=>{var o=r!=null&&typeof r==="object";if(o){var n=e?I??=new WeakMap:v??=new WeakMap,s=n.get(r);if(s)return s}t=r!=null?h(x(r)):{};let l=e||!r||!r.__esModule?p(t,"default",{value:r,enumerable:!0}):t;for(let i of m(r))if(!f.call(l,i))p(l,i,{get:u.bind(r,i),enumerable:!0});if(o)n.set(r,l);return l},d=(r)=>{var e=(V??=new WeakMap).get(r),t;if(e)return e;if(e=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of m(r))if(!f.call(e,o))p(e,o,{get:u.bind(r,o),enumerable:!(t=B(r,o))||t.enumerable})}return V.set(r,e),e},V;var w=(r)=>r;function y(r,e){this[r]=w.bind(null,e)}var H=(r,e)=>{for(var t in e)p(r,t,{get:e[t],enumerable:!0,configurable:!0,set:y.bind(e,t)})};var P={};H(P,{CentralIconBase:()=>c});module.exports=d(P);var C=L(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:s,...l})=>{return C.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...s}},t&&!n&&C.default.createElement("title",null,t),r)};var b={};H(b,{default:()=>M,IconScript:()=>g});module.exports=d(b);var a=L(require("react"));var g=(r)=>{return a.default.createElement(c,{...r,ariaLabel:"script, paper, page, contract, file, document, skills"},a.default.createElement("path",{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),a.default.createElement("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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.77637 10.0527L8.88184 10.5H8V11.5H9.11816L10 11.0586L10.8818 11.5H14V10.5H11.1182L10.2236 10.0527L10 9.94141L9.77637 10.0527ZM9.77637 6.55273L8.88184 7H8V8H9.11816L10 7.55859L10.8818 8H14V7H11.1182L10.2236 6.55273L10 6.44141L9.77637 6.55273Z",fill:"currentColor"}),a.default.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},M=g;
2
2
 
3
- //# debugId=90A6FE517ABD811D64756E2164756E21
3
+ //# debugId=7C39E391A63AB33064756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script, paper, page, contract, file, document, skills\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22 5.5C22 4.13453 20.8654 3 19.5 3C17.0501 3.00179 14.6001 3.00131 12.1501 3.00082C11.017 3.00059 9.88359 3.00037 8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C16.8811 21 18 19.8811 18 18.502V10H22V5.5ZM19.4976 4C19.1006 4.00063 18.7199 4.15867 18.4393 4.43934C18.1581 4.72072 18 5.1022 18 5.5V9H21V5.5C21 4.68682 20.3132 4 19.5 4L19.4976 4ZM13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3059 19.7427 13.1612 19.4468 13.0787 19.1261C13.0273 18.9266 13 18.7174 13 18.502L13 16ZM10 7H14V8H10V7ZM10 10H13V11H10V10Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script, paper, page, contract, file, document, skills\"><path d=\"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\" 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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.77637 10.0527L8.88184 10.5H8V11.5H9.11816L10 11.0586L10.8818 11.5H14V10.5H11.1182L10.2236 10.0527L10 9.94141L9.77637 10.0527ZM9.77637 6.55273L8.88184 7H8V8H9.11816L10 7.55859L10.8818 8H14V7H11.1182L10.2236 6.55273L10 6.44141L9.77637 6.55273Z\" 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 IconScript;\n"
7
7
  ],
8
- "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,sECjCY,IAAlB,sBAGO,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,wBAA63B,EAA73B,IAAqB,EAAO,UAAU,yDAAwD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0tBAA0tB,KAAK,eAAc,CAAI,GAGv3B",
9
- "debugId": "90A6FE517ABD811D64756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,sECjCY,IAAlB,sBAGO,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,wBAAyxB,EAAzxB,IAAqB,EAAO,UAAU,yDAAwD,wBAAC,OAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yZAAyZ,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,CAAI,GAGnxB",
9
+ "debugId": "7C39E391A63AB33064756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:C,ariaHidden:t=!0,style:a,...s})=>{return n.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...a}},o&&!t&&n.createElement("title",null,o),r)};import p from"react";var c=(r)=>{return p.createElement(l,{...r,ariaLabel:"script, paper, page, contract, file, document, skills"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22 5.5C22 4.13453 20.8654 3 19.5 3C17.0501 3.00179 14.6001 3.00131 12.1501 3.00082C11.017 3.00059 9.88359 3.00037 8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C16.8811 21 18 19.8811 18 18.502V10H22V5.5ZM19.4976 4C19.1006 4.00063 18.7199 4.15867 18.4393 4.43934C18.1581 4.72072 18 5.1022 18 5.5V9H21V5.5C21 4.68682 20.3132 4 19.5 4L19.4976 4ZM13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3059 19.7427 13.1612 19.4468 13.0787 19.1261C13.0273 18.9266 13 18.7174 13 18.502L13 16ZM10 7H14V8H10V7ZM10 10H13V11H10V10Z",fill:"currentColor"}))},d=c;export{d as default,c as IconScript};
1
+ import l from"react";var p=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...i})=>{return l.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!o&&l.createElement("title",null,n),t)};import e from"react";var C=(t)=>{return e.createElement(p,{...t,ariaLabel:"script, paper, page, contract, file, document, skills"},e.createElement("path",{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),e.createElement("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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.77637 10.0527L8.88184 10.5H8V11.5H9.11816L10 11.0586L10.8818 11.5H14V10.5H11.1182L10.2236 10.0527L10 9.94141L9.77637 10.0527ZM9.77637 6.55273L8.88184 7H8V8H9.11816L10 7.55859L10.8818 8H14V7H11.1182L10.2236 6.55273L10 6.44141L9.77637 6.55273Z",fill:"currentColor"}),e.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},L=C;export{L as default,C as IconScript};
2
2
 
3
- //# debugId=D50723B7F4115BEE64756E2164756E21
3
+ //# debugId=189DC08A9EF9A84664756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script, paper, page, contract, file, document, skills\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M22 5.5C22 4.13453 20.8654 3 19.5 3C17.0501 3.00179 14.6001 3.00131 12.1501 3.00082C11.017 3.00059 9.88359 3.00037 8.75035 3.00037C7.86931 3.00037 7.22204 3.24217 6.73303 3.73046C6.26322 4.1988 6 4.83424 6 5.49677V15H3V18.4675C3 19.1388 3.26654 19.7833 3.74177 20.2583C4.21687 20.7332 4.86113 21 5.5329 21L15.502 21C16.8811 21 18 19.8811 18 18.502V10H22V5.5ZM19.4976 4C19.1006 4.00063 18.7199 4.15867 18.4393 4.43934C18.1581 4.72072 18 5.1022 18 5.5V9H21V5.5C21 4.68682 20.3132 4 19.5 4L19.4976 4ZM13 16H4V18.4675C4 18.8739 4.16136 19.2638 4.44875 19.5511C4.73629 19.8385 5.12624 20 5.5329 20H13.4991C13.3059 19.7427 13.1612 19.4468 13.0787 19.1261C13.0273 18.9266 13 18.7174 13 18.502L13 16ZM10 7H14V8H10V7ZM10 10H13V11H10V10Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script, paper, page, contract, file, document, skills\"><path d=\"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z\" 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 18V15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM9.77637 10.0527L8.88184 10.5H8V11.5H9.11816L10 11.0586L10.8818 11.5H14V10.5H11.1182L10.2236 10.0527L10 9.94141L9.77637 10.0527ZM9.77637 6.55273L8.88184 7H8V8H9.11816L10 7.55859L10.8818 8H14V7H11.1182L10.2236 6.55273L10 6.44141L9.77637 6.55273Z\" 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 IconScript;\n"
7
7
  ],
8
- "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAA63B,EAA73B,IAAqB,EAAO,UAAU,yDAAwD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0tBAA0tB,KAAK,eAAc,CAAI,GAGv3B",
9
- "debugId": "D50723B7F4115BEE64756E2164756E21",
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAyxB,EAAzxB,IAAqB,EAAO,UAAU,yDAAwD,gBAAC,OAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yZAAyZ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,CAAI,GAGnxB",
9
+ "debugId": "189DC08A9EF9A84664756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:h,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:v}=Object,u=Object.prototype.hasOwnProperty;function V(e){return this[e]}var w,y,d=(e,r,t)=>{var o=e!=null&&typeof e==="object";if(o){var n=r?w??=new WeakMap:y??=new WeakMap,C=n.get(e);if(C)return C}t=e!=null?I(h(e)):{};let l=r||!e||!e.__esModule?p(t,"default",{value:e,enumerable:!0}):t;for(let a of f(e))if(!u.call(l,a))p(l,a,{get:V.bind(e,a),enumerable:!0});if(o)n.set(e,l);return l},g=(e)=>{var r=(m??=new WeakMap).get(e),t;if(r)return r;if(r=p({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of f(e))if(!u.call(r,o))p(r,o,{get:V.bind(e,o),enumerable:!(t=v(e,o))||t.enumerable})}return m.set(e,r),r},m;var P=(e)=>e;function b(e,r){this[e]=P.bind(null,r)}var x=(e,r)=>{for(var t in r)p(e,t,{get:r[t],enumerable:!0,configurable:!0,set:b.bind(r,t)})};var S={};x(S,{CentralIconBase:()=>c});module.exports=g(S);var s=d(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:C,...l})=>{return s.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...C}},t&&!n&&s.default.createElement("title",null,t),e)};var G={};x(G,{default:()=>H,IconScript2:()=>B});module.exports=g(G);var i=d(require("react"));var B=(e)=>{return i.default.createElement(c,{...e,ariaLabel:"script-2, paper, page, contract, file, document, skills"},i.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 3C19.4999 3 19.5001 3 19.5 3C20.8654 3 22 4.13453 22 5.5V10H18V18.502C18 19.8811 16.8811 21 15.502 21L5.5329 21C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037C9.88359 3.00037 11.017 3.00059 12.1501 3.00082C14.6001 3.00131 17.0501 3.00179 19.5 3ZM18.4393 4.43934C18.7199 4.15867 19.1006 4.00063 19.4976 4C19.4976 4 19.4977 4 19.4976 4C19.4984 4 19.4992 4 19.5 4C20.3132 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM4 16H13L13 18.502C13 18.7174 13.0273 18.9266 13.0787 19.1261C13.1612 19.4468 13.3059 19.7427 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16Z",fill:"currentColor"}))},H=B;
1
+ var B=Object.create;var{getPrototypeOf:I,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:w}=Object,u=Object.prototype.hasOwnProperty;function V(r){return this[r]}var y,P,g=(r,t,e)=>{var o=r!=null&&typeof r==="object";if(o){var n=t?y??=new WeakMap:P??=new WeakMap,s=n.get(r);if(s)return s}e=r!=null?B(I(r)):{};let l=t||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let C of f(r))if(!u.call(l,C))p(l,C,{get:V.bind(r,C),enumerable:!0});if(o)n.set(r,l);return l},d=(r)=>{var t=(m??=new WeakMap).get(r),e;if(t)return t;if(t=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of f(r))if(!u.call(t,o))p(t,o,{get:V.bind(r,o),enumerable:!(e=w(r,o))||e.enumerable})}return m.set(r,t),t},m;var b=(r)=>r;function S(r,t){this[r]=b.bind(null,t)}var h=(r,t)=>{for(var e in t)p(r,e,{get:t[e],enumerable:!0,configurable:!0,set:S.bind(t,e)})};var v={};h(v,{CentralIconBase:()=>c});module.exports=d(v);var i=g(require("react")),c=({children:r,size:t=24,ariaLabel:e,color:o,ariaHidden:n=!0,style:s,...l})=>{return i.default.createElement("svg",{...l,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...s}},e&&!n&&i.default.createElement("title",null,e),r)};var G={};h(G,{default:()=>H,IconScript2:()=>x});module.exports=d(G);var a=g(require("react"));var x=(r)=>{return a.default.createElement(c,{...r,ariaLabel:"script-2, paper, page, contract, file, document, skills"},a.default.createElement("path",{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),a.default.createElement("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"}),a.default.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},H=x;
2
2
 
3
- //# debugId=F250009B5CB8CA0664756E2164756E21
3
+ //# debugId=4C6BE5DE1AAF3FCB64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script-2, paper, page, contract, file, document, skills\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 3C19.4999 3 19.5001 3 19.5 3C20.8654 3 22 4.13453 22 5.5V10H18V18.502C18 19.8811 16.8811 21 15.502 21L5.5329 21C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037C9.88359 3.00037 11.017 3.00059 12.1501 3.00082C14.6001 3.00131 17.0501 3.00179 19.5 3ZM18.4393 4.43934C18.7199 4.15867 19.1006 4.00063 19.4976 4C19.4976 4 19.4977 4 19.4976 4C19.4984 4 19.4992 4 19.5 4C20.3132 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM4 16H13L13 18.502C13 18.7174 13.0273 18.9266 13.0787 19.1261C13.1612 19.4468 13.3059 19.7427 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script-2, paper, page, contract, file, document, skills\"><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": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAA86B,EAA96B,IAAqB,EAAO,UAAU,2DAA0D,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ywBAAywB,KAAK,eAAc,CAAI,GAGx6B",
9
- "debugId": "F250009B5CB8CA0664756E2164756E21",
8
+ "mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAA6f,EAA7f,IAAqB,EAAO,UAAU,2DAA0D,wBAAC,OAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,CAAI,GAGvf",
9
+ "debugId": "4C6BE5DE1AAF3FCB64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import n from"react";var l=({children:r,size:e=24,ariaLabel:o,color:C,ariaHidden:t=!0,style:a,...s})=>{return n.createElement("svg",{...s,"aria-hidden":t,role:t?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:C,...a}},o&&!t&&n.createElement("title",null,o),r)};import p from"react";var c=(r)=>{return p.createElement(l,{...r,ariaLabel:"script-2, paper, page, contract, file, document, skills"},p.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M19.5 3C19.4999 3 19.5001 3 19.5 3C20.8654 3 22 4.13453 22 5.5V10H18V18.502C18 19.8811 16.8811 21 15.502 21L5.5329 21C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037C9.88359 3.00037 11.017 3.00059 12.1501 3.00082C14.6001 3.00131 17.0501 3.00179 19.5 3ZM18.4393 4.43934C18.7199 4.15867 19.1006 4.00063 19.4976 4C19.4976 4 19.4977 4 19.4976 4C19.4984 4 19.4992 4 19.5 4C20.3132 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM4 16H13L13 18.502C13 18.7174 13.0273 18.9266 13.0787 19.1261C13.1612 19.4468 13.3059 19.7427 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16Z",fill:"currentColor"}))},d=c;export{d as default,c as IconScript2};
1
+ import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:o=!0,style:s,...C})=>{return l.createElement("svg",{...C,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:a,...s}},n&&!o&&l.createElement("title",null,n),e)};import t from"react";var i=(e)=>{return t.createElement(p,{...e,ariaLabel:"script-2, paper, page, contract, file, document, skills"},t.createElement("path",{d:"M14 18C14 19.3057 14.8355 20.413 16 20.8252V21H5C3.34315 21 2 19.6569 2 18V16H14V18Z",fill:"currentColor"}),t.createElement("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"}),t.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},g=i;export{g as default,i as IconScript2};
2
2
 
3
- //# debugId=2B80C201A07826A564756E2164756E21
3
+ //# debugId=1E18FF036F668E0D64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconScript2/index.tsx"],
4
4
  "sourcesContent": [
5
5
  "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n children,\n size = 24,\n ariaLabel,\n color,\n ariaHidden = true,\n style,\n ...props\n}) => {\n return (\n <svg\n {...props}\n aria-hidden={ariaHidden}\n role={ariaHidden ? undefined : \"img\"}\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 xmlns=\"http://www.w3.org/2000/svg\"\n style={{ color, ...style }}\n >\n {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n {children}\n </svg>\n );\n};\n",
6
- "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script-2, paper, page, contract, file, document, skills\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M19.5 3C19.4999 3 19.5001 3 19.5 3C20.8654 3 22 4.13453 22 5.5V10H18V18.502C18 19.8811 16.8811 21 15.502 21L5.5329 21C4.86113 21 4.21687 20.7332 3.74177 20.2583C3.26654 19.7833 3 19.1388 3 18.4675V15H6V5.49677C6 4.83424 6.26322 4.1988 6.73303 3.73046C7.22204 3.24217 7.86931 3.00037 8.75035 3.00037C9.88359 3.00037 11.017 3.00059 12.1501 3.00082C14.6001 3.00131 17.0501 3.00179 19.5 3ZM18.4393 4.43934C18.7199 4.15867 19.1006 4.00063 19.4976 4C19.4976 4 19.4977 4 19.4976 4C19.4984 4 19.4992 4 19.5 4C20.3132 4 21 4.68682 21 5.5V9H18V5.5C18 5.1022 18.1581 4.72072 18.4393 4.43934ZM4 16H13L13 18.502C13 18.7174 13.0273 18.9266 13.0787 19.1261C13.1612 19.4468 13.3059 19.7427 13.4991 20H5.5329C5.12624 20 4.73629 19.8385 4.44875 19.5511C4.16136 19.2638 4 18.8739 4 18.4675V16Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconScript2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"script-2, paper, page, contract, file, document, skills\"><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,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA86B,EAA96B,IAAqB,EAAO,UAAU,2DAA0D,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,ywBAAywB,KAAK,eAAc,CAAI,GAGx6B",
9
- "debugId": "2B80C201A07826A564756E2164756E21",
8
+ "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA6f,EAA7f,IAAqB,EAAO,UAAU,2DAA0D,gBAAC,OAAD,CAAM,EAAE,uFAAuF,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iKAAiK,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4EAA4E,KAAK,eAAc,CAAI,GAGvf",
9
+ "debugId": "1E18FF036F668E0D64756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -1106,6 +1106,7 @@ Below is a complete list of available icons:
1106
1106
  - IconHandshake
1107
1107
  - IconBecepsLeftArm
1108
1108
  - IconBecepsRightArm
1109
+ - IconHandTouch
1109
1110
 
1110
1111
  ### Health & Medical
1111
1112