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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import 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 v(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:v.bind(t,e)})};var G={};d(G,{CentralIconBase:()=>i});module.exports=g(G);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 S={};d(S,{default:()=>H,IconHandTouch:()=>x});module.exports=g(S);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.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.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656Z",fill:"currentColor"}),l.default.createElement("path",{d:"M17 3C19.2091 3 21 4.79086 21 7V12.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 17H7C4.79086 17 3 15.2091 3 13V7C3 4.79086 4.79086 3 7 3H17Z",fill:"currentColor"}))},H=x;
2
+
3
+ //# debugId=ED0233BFB8652B0464756E2164756E21
@@ -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.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.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656Z\" fill=\"currentColor\"/><path d=\"M17 3C19.2091 3 21 4.79086 21 7V12.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 17H7C4.79086 17 3 15.2091 3 13V7C3 4.79086 4.79086 3 7 3H17Z\" 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,wBAAsrC,EAAtrC,IAAqB,EAAO,UAAU,mCAAkC,wBAAC,OAAD,CAAM,EAAE,usBAAusB,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,2WAA2W,KAAK,eAAc,CAAI,GAGhrC",
9
+ "debugId": "ED0233BFB8652B0464756E2164756E21",
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.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.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656Z",fill:"currentColor"}),o.createElement("path",{d:"M17 3C19.2091 3 21 4.79086 21 7V12.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 17H7C4.79086 17 3 15.2091 3 13V7C3 4.79086 4.79086 3 7 3H17Z",fill:"currentColor"}))},V=c;export{V as default,c as IconHandTouch};
2
+
3
+ //# debugId=CF922F1C22D56E6A64756E2164756E21
@@ -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.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.3828 15.0038 20.7065 18.1965 20.127 20.2871C20.0092 20.712 19.6196 20.9999 19.1787 21H13.4531C13.0738 21 12.7276 20.784 12.5547 20.4463C11.7153 18.8065 11.0454 17.733 10.1475 16.6875C9.54866 15.9903 9.61704 14.9167 10.3623 14.3789C10.7859 14.0732 11.3397 14.0144 11.8184 14.2236L13.3955 14.9131V10.0488C13.3957 9.0425 14.2114 8.22675 15.2178 8.22656Z\" fill=\"currentColor\"/><path d=\"M17 3C19.2091 3 21 4.79086 21 7V12.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 17H7C4.79086 17 3 15.2091 3 13V7C3 4.79086 4.79086 3 7 3H17Z\" 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,gBAAsrC,EAAtrC,IAAqB,EAAO,UAAU,mCAAkC,gBAAC,OAAD,CAAM,EAAE,usBAAusB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,2WAA2W,KAAK,eAAc,CAAI,GAGhrC",
9
+ "debugId": "CF922F1C22D56E6A64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:w,defineProperty:a,getOwnPropertyNames:f,getOwnPropertyDescriptor:b}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var y,P,h=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?y??=new WeakMap:P??=new WeakMap,p=n.get(r);if(p)return p}t=r!=null?I(w(r)):{};let C=o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let s of f(r))if(!u.call(C,s))a(C,s,{get:d.bind(r,s),enumerable:!0});if(e)n.set(r,C);return C},g=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!u.call(o,e))a(o,e,{get:d.bind(r,e),enumerable:!(t=b(r,e))||t.enumerable})}return c.set(r,o),o},c;var L=(r)=>r;function M(r,o){this[r]=L.bind(null,o)}var x=(r,o)=>{for(var t in o)a(r,t,{get:o[t],enumerable:!0,configurable:!0,set:M.bind(o,t)})};var v={};x(v,{CentralIconBase:()=>m});module.exports=g(v);var i=h(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:p,...C})=>{return i.default.createElement("svg",{...C,"aria-hidden":n,role:n?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,...p}},t&&!n&&i.default.createElement("title",null,t),r)};var G={};x(G,{default:()=>S,IconMagicHands:()=>B});module.exports=g(G);var l=h(require("react"));var B=(r)=>{return l.default.createElement(m,{...r,ariaLabel:"magic-hands, rainbow-hands"},l.default.createElement("path",{d:"M12.0004 5C9.26844 5 6.90022 6.56482 5.74641 8.85163C5.49762 9.34471 4.89623 9.54275 4.40315 9.29397C3.91007 9.04518 3.71203 8.44379 3.96081 7.95071C5.44146 5.01613 8.48458 3 12.0004 3C15.5162 3 18.5593 5.01613 20.0399 7.95072C20.2887 8.4438 20.0907 9.0452 19.5976 9.29398C19.1045 9.54276 18.5031 9.34472 18.2543 8.85164C17.1005 6.56482 14.7323 5 12.0004 5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M12.0004 8C10.5415 8 9.26386 8.78042 8.56393 9.95134C8.28056 10.4254 7.66655 10.58 7.19251 10.2966C6.71846 10.0132 6.56388 9.39922 6.84725 8.92517C7.89325 7.17532 9.80905 6 12.0004 6C14.1917 6 16.1075 7.17533 17.1535 8.92519C17.4369 9.39923 17.2823 10.0132 16.8082 10.2966C16.3342 10.58 15.7202 10.4254 15.4368 9.95135C14.7369 8.78042 13.4593 8 12.0004 8Z",fill:"currentColor"}),l.default.createElement("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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 3.75651 11.5279Z",fill:"currentColor"}),l.default.createElement("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.1562 14.3669C14.4587 13.5357 15.3254 13.073 16.1664 13.2538C16.8554 11.7105 18.6314 10.9409 20.2443 11.5279Z",fill:"currentColor"}))},S=B;
1
+ var I=Object.create;var{getPrototypeOf:w,defineProperty:a,getOwnPropertyNames:f,getOwnPropertyDescriptor:b}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var y,P,h=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?y??=new WeakMap:P??=new WeakMap,p=n.get(r);if(p)return p}t=r!=null?I(w(r)):{};let C=o||!r||!r.__esModule?a(t,"default",{value:r,enumerable:!0}):t;for(let s of f(r))if(!u.call(C,s))a(C,s,{get:d.bind(r,s),enumerable:!0});if(e)n.set(r,C);return C},g=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var e of f(r))if(!u.call(o,e))a(o,e,{get:d.bind(r,e),enumerable:!(t=b(r,e))||t.enumerable})}return c.set(r,o),o},c;var L=(r)=>r;function M(r,o){this[r]=L.bind(null,o)}var x=(r,o)=>{for(var t in o)a(r,t,{get:o[t],enumerable:!0,configurable:!0,set:M.bind(o,t)})};var v={};x(v,{CentralIconBase:()=>m});module.exports=g(v);var i=h(require("react")),m=({children:r,size:o=24,ariaLabel:t,color:e,ariaHidden:n=!0,style:p,...C})=>{return i.default.createElement("svg",{...C,"aria-hidden":n,role:n?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,...p}},t&&!n&&i.default.createElement("title",null,t),r)};var G={};x(G,{default:()=>S,IconMagicHands:()=>B});module.exports=g(G);var l=h(require("react"));var B=(r)=>{return l.default.createElement(m,{...r,ariaLabel:"magic-hands, rainbow-hands"},l.default.createElement("path",{d:"M11.9985 5C9.26661 5 6.89839 6.56482 5.74457 8.85163C5.49579 9.34471 4.89439 9.54275 4.40132 9.29397C3.90824 9.04518 3.7102 8.44379 3.95898 7.95071C5.43963 5.01613 8.48275 3 11.9985 3C15.5143 3 18.5574 5.01613 20.0381 7.95072C20.2869 8.4438 20.0888 9.0452 19.5958 9.29398C19.1027 9.54276 18.5013 9.34472 18.2525 8.85164C17.0987 6.56482 14.7305 5 11.9985 5Z",fill:"currentColor"}),l.default.createElement("path",{d:"M11.9981 8C10.5392 8 9.26155 8.78042 8.56162 9.95134C8.27825 10.4254 7.66424 10.58 7.19019 10.2966C6.71615 10.0132 6.56157 9.39922 6.84494 8.92517C7.89094 7.17532 9.80673 6 11.9981 6C14.1894 6 16.1052 7.17533 17.1512 8.92519C17.4345 9.39923 17.28 10.0132 16.8059 10.2966C16.3319 10.58 15.7179 10.4254 15.4345 9.95135C14.7346 8.78042 13.4569 8 11.9981 8Z",fill:"currentColor"}),l.default.createElement("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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 3.75651 11.5279Z",fill:"currentColor"}),l.default.createElement("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.1559 14.3669C14.4585 13.5357 15.3251 13.073 16.1661 13.2538C16.8552 11.7105 18.6312 10.9409 20.2441 11.5279Z",fill:"currentColor"}))},S=B;
2
2
 
3
- //# debugId=3E44D67281B15C1664756E2164756E21
3
+ //# debugId=97675C9DCE61097564756E2164756E21
@@ -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=\"M12.0004 5C9.26844 5 6.90022 6.56482 5.74641 8.85163C5.49762 9.34471 4.89623 9.54275 4.40315 9.29397C3.91007 9.04518 3.71203 8.44379 3.96081 7.95071C5.44146 5.01613 8.48458 3 12.0004 3C15.5162 3 18.5593 5.01613 20.0399 7.95072C20.2887 8.4438 20.0907 9.0452 19.5976 9.29398C19.1045 9.54276 18.5031 9.34472 18.2543 8.85164C17.1005 6.56482 14.7323 5 12.0004 5Z\" fill=\"currentColor\"/><path d=\"M12.0004 8C10.5415 8 9.26386 8.78042 8.56393 9.95134C8.28056 10.4254 7.66655 10.58 7.19251 10.2966C6.71846 10.0132 6.56388 9.39922 6.84725 8.92517C7.89325 7.17532 9.80905 6 12.0004 6C14.1917 6 16.1075 7.17533 17.1535 8.92519C17.4369 9.39923 17.2823 10.0132 16.8082 10.2966C16.3342 10.58 15.7202 10.4254 15.4368 9.95135C14.7369 8.78042 13.4593 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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 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.1562 14.3669C14.4587 13.5357 15.3254 13.073 16.1664 13.2538C16.8554 11.7105 18.6314 10.9409 20.2443 11.5279Z\" 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=\"M11.9985 5C9.26661 5 6.89839 6.56482 5.74457 8.85163C5.49579 9.34471 4.89439 9.54275 4.40132 9.29397C3.90824 9.04518 3.7102 8.44379 3.95898 7.95071C5.43963 5.01613 8.48275 3 11.9985 3C15.5143 3 18.5574 5.01613 20.0381 7.95072C20.2869 8.4438 20.0888 9.0452 19.5958 9.29398C19.1027 9.54276 18.5013 9.34472 18.2525 8.85164C17.0987 6.56482 14.7305 5 11.9985 5Z\" fill=\"currentColor\"/><path d=\"M11.9981 8C10.5392 8 9.26155 8.78042 8.56162 9.95134C8.27825 10.4254 7.66424 10.58 7.19019 10.2966C6.71615 10.0132 6.56157 9.39922 6.84494 8.92517C7.89094 7.17532 9.80673 6 11.9981 6C14.1894 6 16.1052 7.17533 17.1512 8.92519C17.4345 9.39923 17.28 10.0132 16.8059 10.2966C16.3319 10.58 15.7179 10.4254 15.4345 9.95135C14.7346 8.78042 13.4569 8 11.9981 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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 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.1559 14.3669C14.4585 13.5357 15.3251 13.073 16.1661 13.2538C16.8552 11.7105 18.6312 10.9409 20.2441 11.5279Z\" 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,wBAAy8C,EAAz8C,IAAqB,EAAO,UAAU,8BAA6B,wBAAC,OAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,CAAI,GAGn8C",
9
- "debugId": "3E44D67281B15C1664756E2164756E21",
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,wBAAq8C,EAAr8C,IAAqB,EAAO,UAAU,8BAA6B,wBAAC,OAAD,CAAM,EAAE,uWAAuW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oWAAoW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,gSAAgS,KAAK,eAAc,CAAI,GAG/7C",
9
+ "debugId": "97675C9DCE61097564756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import C from"react";var l=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:p,...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:a,...p}},n&&!e&&C.createElement("title",null,n),t)};import o from"react";var i=(t)=>{return o.createElement(l,{...t,ariaLabel:"magic-hands, rainbow-hands"},o.createElement("path",{d:"M12.0004 5C9.26844 5 6.90022 6.56482 5.74641 8.85163C5.49762 9.34471 4.89623 9.54275 4.40315 9.29397C3.91007 9.04518 3.71203 8.44379 3.96081 7.95071C5.44146 5.01613 8.48458 3 12.0004 3C15.5162 3 18.5593 5.01613 20.0399 7.95072C20.2887 8.4438 20.0907 9.0452 19.5976 9.29398C19.1045 9.54276 18.5031 9.34472 18.2543 8.85164C17.1005 6.56482 14.7323 5 12.0004 5Z",fill:"currentColor"}),o.createElement("path",{d:"M12.0004 8C10.5415 8 9.26386 8.78042 8.56393 9.95134C8.28056 10.4254 7.66655 10.58 7.19251 10.2966C6.71846 10.0132 6.56388 9.39922 6.84725 8.92517C7.89325 7.17532 9.80905 6 12.0004 6C14.1917 6 16.1075 7.17533 17.1535 8.92519C17.4369 9.39923 17.2823 10.0132 16.8082 10.2966C16.3342 10.58 15.7202 10.4254 15.4368 9.95135C14.7369 8.78042 13.4593 8 12.0004 8Z",fill:"currentColor"}),o.createElement("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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 3.75651 11.5279Z",fill:"currentColor"}),o.createElement("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.1562 14.3669C14.4587 13.5357 15.3254 13.073 16.1664 13.2538C16.8554 11.7105 18.6314 10.9409 20.2443 11.5279Z",fill:"currentColor"}))},h=i;export{h as default,i as IconMagicHands};
1
+ import C from"react";var l=({children:t,size:r=24,ariaLabel:n,color:a,ariaHidden:e=!0,style:p,...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:a,...p}},n&&!e&&C.createElement("title",null,n),t)};import o from"react";var i=(t)=>{return o.createElement(l,{...t,ariaLabel:"magic-hands, rainbow-hands"},o.createElement("path",{d:"M11.9985 5C9.26661 5 6.89839 6.56482 5.74457 8.85163C5.49579 9.34471 4.89439 9.54275 4.40132 9.29397C3.90824 9.04518 3.7102 8.44379 3.95898 7.95071C5.43963 5.01613 8.48275 3 11.9985 3C15.5143 3 18.5574 5.01613 20.0381 7.95072C20.2869 8.4438 20.0888 9.0452 19.5958 9.29398C19.1027 9.54276 18.5013 9.34472 18.2525 8.85164C17.0987 6.56482 14.7305 5 11.9985 5Z",fill:"currentColor"}),o.createElement("path",{d:"M11.9981 8C10.5392 8 9.26155 8.78042 8.56162 9.95134C8.27825 10.4254 7.66424 10.58 7.19019 10.2966C6.71615 10.0132 6.56157 9.39922 6.84494 8.92517C7.89094 7.17532 9.80673 6 11.9981 6C14.1894 6 16.1052 7.17533 17.1512 8.92519C17.4345 9.39923 17.28 10.0132 16.8059 10.2966C16.3319 10.58 15.7179 10.4254 15.4345 9.95135C14.7346 8.78042 13.4569 8 11.9981 8Z",fill:"currentColor"}),o.createElement("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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 3.75651 11.5279Z",fill:"currentColor"}),o.createElement("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.1559 14.3669C14.4585 13.5357 15.3251 13.073 16.1661 13.2538C16.8552 11.7105 18.6312 10.9409 20.2441 11.5279Z",fill:"currentColor"}))},h=i;export{h as default,i as IconMagicHands};
2
2
 
3
- //# debugId=3FDDD82BD9A7BD8264756E2164756E21
3
+ //# debugId=456F64834038C83464756E2164756E21
@@ -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=\"M12.0004 5C9.26844 5 6.90022 6.56482 5.74641 8.85163C5.49762 9.34471 4.89623 9.54275 4.40315 9.29397C3.91007 9.04518 3.71203 8.44379 3.96081 7.95071C5.44146 5.01613 8.48458 3 12.0004 3C15.5162 3 18.5593 5.01613 20.0399 7.95072C20.2887 8.4438 20.0907 9.0452 19.5976 9.29398C19.1045 9.54276 18.5031 9.34472 18.2543 8.85164C17.1005 6.56482 14.7323 5 12.0004 5Z\" fill=\"currentColor\"/><path d=\"M12.0004 8C10.5415 8 9.26386 8.78042 8.56393 9.95134C8.28056 10.4254 7.66655 10.58 7.19251 10.2966C6.71846 10.0132 6.56388 9.39922 6.84725 8.92517C7.89325 7.17532 9.80905 6 12.0004 6C14.1917 6 16.1075 7.17533 17.1535 8.92519C17.4369 9.39923 17.2823 10.0132 16.8082 10.2966C16.3342 10.58 15.7202 10.4254 15.4368 9.95135C14.7369 8.78042 13.4593 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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 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.1562 14.3669C14.4587 13.5357 15.3254 13.073 16.1664 13.2538C16.8554 11.7105 18.6314 10.9409 20.2443 11.5279Z\" 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=\"M11.9985 5C9.26661 5 6.89839 6.56482 5.74457 8.85163C5.49579 9.34471 4.89439 9.54275 4.40132 9.29397C3.90824 9.04518 3.7102 8.44379 3.95898 7.95071C5.43963 5.01613 8.48275 3 11.9985 3C15.5143 3 18.5574 5.01613 20.0381 7.95072C20.2869 8.4438 20.0888 9.0452 19.5958 9.29398C19.1027 9.54276 18.5013 9.34472 18.2525 8.85164C17.0987 6.56482 14.7305 5 11.9985 5Z\" fill=\"currentColor\"/><path d=\"M11.9981 8C10.5392 8 9.26155 8.78042 8.56162 9.95134C8.27825 10.4254 7.66424 10.58 7.19019 10.2966C6.71615 10.0132 6.56157 9.39922 6.84494 8.92517C7.89094 7.17532 9.80673 6 11.9981 6C14.1894 6 16.1052 7.17533 17.1512 8.92519C17.4345 9.39923 17.28 10.0132 16.8059 10.2966C16.3319 10.58 15.7179 10.4254 15.4345 9.95135C14.7346 8.78042 13.4569 8 11.9981 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.84464 14.3669C9.54213 13.5357 8.67545 13.073 7.83448 13.2538C7.1454 11.7105 5.36942 10.9409 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.1559 14.3669C14.4585 13.5357 15.3251 13.073 16.1661 13.2538C16.8552 11.7105 18.6312 10.9409 20.2441 11.5279Z\" 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,gBAAy8C,EAAz8C,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,CAAI,GAGn8C",
9
- "debugId": "3FDDD82BD9A7BD8264756E2164756E21",
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,gBAAq8C,EAAr8C,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,uWAAuW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oWAAoW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gSAAgS,KAAK,eAAc,CAAI,GAG/7C",
9
+ "debugId": "456F64834038C83464756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,u=Object.prototype.hasOwnProperty;function d(e){return this[e]}var v,w,h=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?v??=new WeakMap:w??=new WeakMap,C=n.get(e);if(C)return C}o=e!=null?I(L(e)):{};let l=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let s of f(e))if(!u.call(l,s))p(l,s,{get:d.bind(e,s),enumerable:!0});if(t)n.set(e,l);return l},g=(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 f(e))if(!u.call(r,t))p(r,t,{get:d.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 x=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:b.bind(r,o)})};var G={};x(G,{CentralIconBase:()=>c});module.exports=g(G);var i=h(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:C,...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,...C}},o&&!n&&i.default.createElement("title",null,o),e)};var S={};x(S,{default:()=>V,IconPinch:()=>B});module.exports=g(S);var a=h(require("react"));var B=(e)=>{return a.default.createElement(c,{...e,ariaLabel:"pinch"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.86058 6.81727C3.37572 7.01642 3.63187 7.59545 3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894C3.63187 12.9045 3.37572 13.4836 2.86058 13.6827C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942C1.76642 6.87429 2.34545 6.61813 2.86058 6.81727Z",fill:"currentColor"}),a.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.7079L5.03489 16.0638C4.70876 15.8505 4.53625 15.4672 4.59288 15.0816L4.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"}))},V=B;
1
+ var I=Object.create;var{getPrototypeOf:L,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:P}=Object,u=Object.prototype.hasOwnProperty;function d(e){return this[e]}var v,w,h=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?v??=new WeakMap:w??=new WeakMap,C=n.get(e);if(C)return C}o=e!=null?I(L(e)):{};let l=r||!e||!e.__esModule?p(o,"default",{value:e,enumerable:!0}):o;for(let s of f(e))if(!u.call(l,s))p(l,s,{get:d.bind(e,s),enumerable:!0});if(t)n.set(e,l);return l},g=(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 f(e))if(!u.call(r,t))p(r,t,{get:d.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 x=(e,r)=>{for(var o in r)p(e,o,{get:r[o],enumerable:!0,configurable:!0,set:b.bind(r,o)})};var G={};x(G,{CentralIconBase:()=>c});module.exports=g(G);var i=h(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:C,...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,...C}},o&&!n&&i.default.createElement("title",null,o),e)};var S={};x(S,{default:()=>V,IconPinch:()=>B});module.exports=g(S);var a=h(require("react"));var B=(e)=>{return a.default.createElement(c,{...e,ariaLabel:"pinch"},a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.86058 6.8173C3.37572 7.01644 3.63187 7.59548 3.43273 8.11061C2.85576 9.60306 2.85576 10.897 3.43273 12.3894C3.63187 12.9046 3.37572 13.4836 2.86058 13.6828C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34593 1.56727 7.38944C1.76642 6.87431 2.34545 6.61815 2.86058 6.8173Z",fill:"currentColor"}),a.default.createElement("path",{d:"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z",fill:"currentColor"}))},V=B;
2
2
 
3
- //# debugId=76AD8667D7B3D4E964756E2164756E21
3
+ //# debugId=0F4443178BFA703064756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.86058 6.81727C3.37572 7.01642 3.63187 7.59545 3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894C3.63187 12.9045 3.37572 13.4836 2.86058 13.6827C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942C1.76642 6.87429 2.34545 6.61813 2.86058 6.81727Z\" 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.7079L5.03489 16.0638C4.70876 15.8505 4.53625 15.4672 4.59288 15.0816L4.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 from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPinch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pinch\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.86058 6.8173C3.37572 7.01644 3.63187 7.59548 3.43273 8.11061C2.85576 9.60306 2.85576 10.897 3.43273 12.3894C3.63187 12.9046 3.37572 13.4836 2.86058 13.6828C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34593 1.56727 7.38944C1.76642 6.87431 2.34545 6.61815 2.86058 6.8173Z\" fill=\"currentColor\"/><path d=\"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z\" fill=\"currentColor\"/></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,wBAAs5B,EAAt5B,IAAqB,EAAO,UAAU,SAAQ,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qTAAqT,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,idAAid,KAAK,eAAc,CAAI,GAGh5B",
9
- "debugId": "76AD8667D7B3D4E964756E2164756E21",
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,wBAAq5B,EAAr5B,IAAqB,EAAO,UAAU,SAAQ,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mTAAmT,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kdAAkd,KAAK,eAAc,CAAI,GAG/4B",
9
+ "debugId": "0F4443178BFA703064756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:C,ariaHidden:o=!0,style:a,...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:C,...a}},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",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.86058 6.81727C3.37572 7.01642 3.63187 7.59545 3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894C3.63187 12.9045 3.37572 13.4836 2.86058 13.6827C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942C1.76642 6.87429 2.34545 6.61813 2.86058 6.81727Z",fill:"currentColor"}),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.7079L5.03489 16.0638C4.70876 15.8505 4.53625 15.4672 4.59288 15.0816L4.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"}))},h=i;export{h as default,i as IconPinch};
1
+ import l from"react";var p=({children:r,size:e=24,ariaLabel:n,color:C,ariaHidden:o=!0,style:a,...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:C,...a}},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",{fillRule:"evenodd",clipRule:"evenodd",d:"M2.86058 6.8173C3.37572 7.01644 3.63187 7.59548 3.43273 8.11061C2.85576 9.60306 2.85576 10.897 3.43273 12.3894C3.63187 12.9046 3.37572 13.4836 2.86058 13.6828C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34593 1.56727 7.38944C1.76642 6.87431 2.34545 6.61815 2.86058 6.8173Z",fill:"currentColor"}),t.createElement("path",{d:"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z",fill:"currentColor"}))},h=i;export{h as default,i as IconPinch};
2
2
 
3
- //# debugId=322BFB90100DA7A264756E2164756E21
3
+ //# debugId=ED72E219848F438164756E2164756E21
@@ -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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.86058 6.81727C3.37572 7.01642 3.63187 7.59545 3.43273 8.11058C2.85576 9.60303 2.85576 10.897 3.43273 12.3894C3.63187 12.9045 3.37572 13.4836 2.86058 13.6827C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34591 1.56727 7.38942C1.76642 6.87429 2.34545 6.61813 2.86058 6.81727Z\" 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.7079L5.03489 16.0638C4.70876 15.8505 4.53625 15.4672 4.59288 15.0816L4.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 from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPinch: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"pinch\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2.86058 6.8173C3.37572 7.01644 3.63187 7.59548 3.43273 8.11061C2.85576 9.60306 2.85576 10.897 3.43273 12.3894C3.63187 12.9046 3.37572 13.4836 2.86058 13.6828C2.34545 13.8819 1.76642 13.6257 1.56727 13.1106C0.810909 11.1541 0.810909 9.34593 1.56727 7.38944C1.76642 6.87431 2.34545 6.61815 2.86058 6.8173Z\" fill=\"currentColor\"/><path d=\"M11.3869 8.21721L16.2667 5.29567C17.8838 4.32756 19.9515 4.90208 20.8851 6.5789L21.9158 8.43017C24.1473 12.4382 22.823 17.5633 18.9579 19.8773C16.3595 21.4329 13.1439 21.3677 10.6061 19.7079L5.03468 16.0638C4.70855 15.8505 4.53605 15.4672 4.59267 15.0816L4.70368 14.3258C4.89111 13.0497 6.04065 12.1728 7.27126 12.3671L8.60993 12.5785L5.22907 6.50624C4.60667 5.38836 4.97603 3.95893 6.05405 3.31352C7.13208 2.66811 8.51055 3.05113 9.13295 4.16901L11.3869 8.21721Z\" fill=\"currentColor\"/></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,gBAAs5B,EAAt5B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,qTAAqT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,idAAid,KAAK,eAAc,CAAI,GAGh5B",
9
- "debugId": "322BFB90100DA7A264756E2164756E21",
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,gBAAq5B,EAAr5B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mTAAmT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kdAAkd,KAAK,eAAc,CAAI,GAG/4B",
9
+ "debugId": "ED72E219848F438164756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var B=Object.create;var{getPrototypeOf:I,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function d(e){return this[e]}var v,w,H=(e,r,t)=>{var o=e!=null&&typeof e==="object";if(o){var C=r?v??=new WeakMap:w??=new WeakMap,p=C.get(e);if(p)return p}t=e!=null?B(I(e)):{};let n=r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t;for(let a of f(e))if(!u.call(n,a))l(n,a,{get:d.bind(e,a),enumerable:!0});if(o)C.set(e,n);return n},g=(e)=>{var r=(m??=new WeakMap).get(e),t;if(r)return r;if(r=l({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of f(e))if(!u.call(r,o))l(r,o,{get:d.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 V=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0,configurable:!0,set:P.bind(r,t)})};var b={};V(b,{CentralIconBase:()=>c});module.exports=g(b);var s=H(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:C=!0,style:p,...n})=>{return s.default.createElement("svg",{...n,"aria-hidden":C,role:C?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,...p}},t&&!C&&s.default.createElement("title",null,t),e)};var M={};V(M,{default:()=>S,IconScript:()=>x});module.exports=g(M);var i=H(require("react"));var x=(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 7.00015C22 8.6571 20.6568 10 19 10H18V18.0016C18 19.6468 16.6737 20.9832 15.0324 20.9995C15.0217 20.9998 15.0109 21 15 21H6.0329C5.22857 21 4.45715 20.6806 3.88829 20.1119C3.31912 19.543 3 18.7713 3 17.9675C3 16.3282 4.32972 15 5.9682 15H6V5.9964C6 5.20128 6.31591 4.43844 6.87986 3.87616C7.44312 3.31379 8.20622 3 9.00035 3H19C19.7956 3 20.5589 3.3161 21.1215 3.87885C21.6838 4.44134 22 5.20421 22 6V7.00015ZM20 7.00015C20 7.55233 19.5524 8 19 8H18V6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4803 5.10544 18.7347 5 19 5C19.2653 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V7.00015ZM5.30224 18.6975C5.496 18.8912 5.7588 19 6.0329 19H12.1704C12.0601 18.6878 12 18.3519 12 18.002C11.9998 17.449 11.5506 17 10.9994 17H5.9682C5.4334 17 5 17.4336 5 17.9675C5 18.2414 5.10877 18.5041 5.30224 18.6975ZM10 8C10 7.44772 10.4477 7 11 7H13C13.5523 7 14 7.44772 14 8C14 8.55228 13.5523 9 13 9H11C10.4477 9 10 8.55228 10 8ZM10 12C10 11.4477 10.4477 11 11 11H12C12.5523 11 13 11.4477 13 12C13 12.5523 12.5523 13 12 13H11C10.4477 13 10 12.5523 10 12Z",fill:"currentColor"}))},S=x;
1
+ var x=Object.create;var{getPrototypeOf:B,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:I}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var V,v,H=(r,e,t)=>{var o=r!=null&&typeof r==="object";if(o){var C=e?V??=new WeakMap:v??=new WeakMap,a=C.get(r);if(a)return a}t=r!=null?x(B(r)):{};let n=e||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let s of f(r))if(!u.call(n,s))l(n,s,{get:d.bind(r,s),enumerable:!0});if(o)C.set(r,n);return n},L=(r)=>{var e=(m??=new WeakMap).get(r),t;if(e)return e;if(e=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of f(r))if(!u.call(e,o))l(e,o,{get:d.bind(r,o),enumerable:!(t=I(r,o))||t.enumerable})}return m.set(r,e),e},m;var w=(r)=>r;function y(r,e){this[r]=w.bind(null,e)}var g=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0,configurable:!0,set:y.bind(e,t)})};var P={};g(P,{CentralIconBase:()=>c});module.exports=L(P);var i=H(require("react")),c=({children:r,size:e=24,ariaLabel:t,color:o,ariaHidden:C=!0,style:a,...n})=>{return i.default.createElement("svg",{...n,"aria-hidden":C,role:C?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,...a}},t&&!C&&i.default.createElement("title",null,t),r)};var b={};g(b,{default:()=>M,IconScript:()=>h});module.exports=L(b);var p=H(require("react"));var h=(r)=>{return p.default.createElement(c,{...r,ariaLabel:"script, paper, page, contract, file, document, skills"},p.default.createElement("path",{d:"M12 16C13.1046 16 14 16.8954 14 18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12Z",fill:"currentColor"}),p.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 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM10.835 10.3291C10.6502 10.2368 10.437 10.2255 10.2451 10.2949L10.165 10.3291L9.32324 10.75H9C8.58579 10.75 8.25 11.0858 8.25 11.5C8.25 11.9142 8.58579 12.25 9 12.25H9.5C9.61629 12.25 9.73092 12.2228 9.83496 12.1709L10.5 11.8379L11.165 12.1709C11.2691 12.2228 11.3837 12.25 11.5 12.25H13C13.4142 12.25 13.75 11.9142 13.75 11.5C13.75 11.0858 13.4142 10.75 13 10.75H11.6768L10.835 10.3291ZM10.835 6.3291C10.6502 6.23685 10.437 6.22555 10.2451 6.29492L10.165 6.3291L9.32324 6.75H9C8.58579 6.75 8.25 7.08579 8.25 7.5C8.25 7.91421 8.58579 8.25 9 8.25H9.5C9.61629 8.25 9.73092 8.22284 9.83496 8.1709L10.5 7.83789L11.165 8.1709C11.2691 8.22284 11.3837 8.25 11.5 8.25H13C13.4142 8.25 13.75 7.91421 13.75 7.5C13.75 7.08579 13.4142 6.75 13 6.75H11.6768L10.835 6.3291Z",fill:"currentColor"}),p.default.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},M=h;
2
2
 
3
- //# debugId=AEE88ABBBEB84F4F64756E2164756E21
3
+ //# debugId=BB02FC56A309FB1464756E2164756E21
@@ -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 7.00015C22 8.6571 20.6568 10 19 10H18V18.0016C18 19.6468 16.6737 20.9832 15.0324 20.9995C15.0217 20.9998 15.0109 21 15 21H6.0329C5.22857 21 4.45715 20.6806 3.88829 20.1119C3.31912 19.543 3 18.7713 3 17.9675C3 16.3282 4.32972 15 5.9682 15H6V5.9964C6 5.20128 6.31591 4.43844 6.87986 3.87616C7.44312 3.31379 8.20622 3 9.00035 3H19C19.7956 3 20.5589 3.3161 21.1215 3.87885C21.6838 4.44134 22 5.20421 22 6V7.00015ZM20 7.00015C20 7.55233 19.5524 8 19 8H18V6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4803 5.10544 18.7347 5 19 5C19.2653 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V7.00015ZM5.30224 18.6975C5.496 18.8912 5.7588 19 6.0329 19H12.1704C12.0601 18.6878 12 18.3519 12 18.002C11.9998 17.449 11.5506 17 10.9994 17H5.9682C5.4334 17 5 17.4336 5 17.9675C5 18.2414 5.10877 18.5041 5.30224 18.6975ZM10 8C10 7.44772 10.4477 7 11 7H13C13.5523 7 14 7.44772 14 8C14 8.55228 13.5523 9 13 9H11C10.4477 9 10 8.55228 10 8ZM10 12C10 11.4477 10.4477 11 11 11H12C12.5523 11 13 11.4477 13 12C13 12.5523 12.5523 13 12 13H11C10.4477 13 10 12.5523 10 12Z\" 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=\"M12 16C13.1046 16 14 16.8954 14 18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM10.835 10.3291C10.6502 10.2368 10.437 10.2255 10.2451 10.2949L10.165 10.3291L9.32324 10.75H9C8.58579 10.75 8.25 11.0858 8.25 11.5C8.25 11.9142 8.58579 12.25 9 12.25H9.5C9.61629 12.25 9.73092 12.2228 9.83496 12.1709L10.5 11.8379L11.165 12.1709C11.2691 12.2228 11.3837 12.25 11.5 12.25H13C13.4142 12.25 13.75 11.9142 13.75 11.5C13.75 11.0858 13.4142 10.75 13 10.75H11.6768L10.835 10.3291ZM10.835 6.3291C10.6502 6.23685 10.437 6.22555 10.2451 6.29492L10.165 6.3291L9.32324 6.75H9C8.58579 6.75 8.25 7.08579 8.25 7.5C8.25 7.91421 8.58579 8.25 9 8.25H9.5C9.61629 8.25 9.73092 8.22284 9.83496 8.1709L10.5 7.83789L11.165 8.1709C11.2691 8.22284 11.3837 8.25 11.5 8.25H13C13.4142 8.25 13.75 7.91421 13.75 7.5C13.75 7.08579 13.4142 6.75 13 6.75H11.6768L10.835 6.3291Z\" fill=\"currentColor\"/><path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
7
7
  ],
8
- "mappings": "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,wBAA6sC,EAA7sC,IAAqB,EAAO,UAAU,yDAAwD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0iCAA0iC,KAAK,eAAc,CAAI,GAGvsC",
9
- "debugId": "AEE88ABBBEB84F4F64756E2164756E21",
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,wBAAu8C,EAAv8C,IAAqB,EAAO,UAAU,yDAAwD,wBAAC,OAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m7BAAm7B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGj8C",
9
+ "debugId": "BB02FC56A309FB1464756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import C from"react";var n=({children:r,size:e=24,ariaLabel:o,color:p,ariaHidden:t=!0,style:a,...s})=>{return C.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:p,...a}},o&&!t&&C.createElement("title",null,o),r)};import l from"react";var c=(r)=>{return l.createElement(n,{...r,ariaLabel:"script, paper, page, contract, file, document, skills"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M22 7.00015C22 8.6571 20.6568 10 19 10H18V18.0016C18 19.6468 16.6737 20.9832 15.0324 20.9995C15.0217 20.9998 15.0109 21 15 21H6.0329C5.22857 21 4.45715 20.6806 3.88829 20.1119C3.31912 19.543 3 18.7713 3 17.9675C3 16.3282 4.32972 15 5.9682 15H6V5.9964C6 5.20128 6.31591 4.43844 6.87986 3.87616C7.44312 3.31379 8.20622 3 9.00035 3H19C19.7956 3 20.5589 3.3161 21.1215 3.87885C21.6838 4.44134 22 5.20421 22 6V7.00015ZM20 7.00015C20 7.55233 19.5524 8 19 8H18V6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4803 5.10544 18.7347 5 19 5C19.2653 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V7.00015ZM5.30224 18.6975C5.496 18.8912 5.7588 19 6.0329 19H12.1704C12.0601 18.6878 12 18.3519 12 18.002C11.9998 17.449 11.5506 17 10.9994 17H5.9682C5.4334 17 5 17.4336 5 17.9675C5 18.2414 5.10877 18.5041 5.30224 18.6975ZM10 8C10 7.44772 10.4477 7 11 7H13C13.5523 7 14 7.44772 14 8C14 8.55228 13.5523 9 13 9H11C10.4477 9 10 8.55228 10 8ZM10 12C10 11.4477 10.4477 11 11 11H12C12.5523 11 13 11.4477 13 12C13 12.5523 12.5523 13 12 13H11C10.4477 13 10 12.5523 10 12Z",fill:"currentColor"}))},H=c;export{H as default,c as IconScript};
1
+ import n from"react";var l=({children:t,size:r=24,ariaLabel:C,color:p,ariaHidden:o=!0,style:a,...s})=>{return n.createElement("svg",{...s,"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:p,...a}},C&&!o&&n.createElement("title",null,C),t)};import e from"react";var i=(t)=>{return e.createElement(l,{...t,ariaLabel:"script, paper, page, contract, file, document, skills"},e.createElement("path",{d:"M12 16C13.1046 16 14 16.8954 14 18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12Z",fill:"currentColor"}),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 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM10.835 10.3291C10.6502 10.2368 10.437 10.2255 10.2451 10.2949L10.165 10.3291L9.32324 10.75H9C8.58579 10.75 8.25 11.0858 8.25 11.5C8.25 11.9142 8.58579 12.25 9 12.25H9.5C9.61629 12.25 9.73092 12.2228 9.83496 12.1709L10.5 11.8379L11.165 12.1709C11.2691 12.2228 11.3837 12.25 11.5 12.25H13C13.4142 12.25 13.75 11.9142 13.75 11.5C13.75 11.0858 13.4142 10.75 13 10.75H11.6768L10.835 10.3291ZM10.835 6.3291C10.6502 6.23685 10.437 6.22555 10.2451 6.29492L10.165 6.3291L9.32324 6.75H9C8.58579 6.75 8.25 7.08579 8.25 7.5C8.25 7.91421 8.58579 8.25 9 8.25H9.5C9.61629 8.25 9.73092 8.22284 9.83496 8.1709L10.5 7.83789L11.165 8.1709C11.2691 8.22284 11.3837 8.25 11.5 8.25H13C13.4142 8.25 13.75 7.91421 13.75 7.5C13.75 7.08579 13.4142 6.75 13 6.75H11.6768L10.835 6.3291Z",fill:"currentColor"}),e.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},H=i;export{H as default,i as IconScript};
2
2
 
3
- //# debugId=DDBB585DA28F7FCB64756E2164756E21
3
+ //# debugId=6AAA602F4FB5262764756E2164756E21
@@ -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 7.00015C22 8.6571 20.6568 10 19 10H18V18.0016C18 19.6468 16.6737 20.9832 15.0324 20.9995C15.0217 20.9998 15.0109 21 15 21H6.0329C5.22857 21 4.45715 20.6806 3.88829 20.1119C3.31912 19.543 3 18.7713 3 17.9675C3 16.3282 4.32972 15 5.9682 15H6V5.9964C6 5.20128 6.31591 4.43844 6.87986 3.87616C7.44312 3.31379 8.20622 3 9.00035 3H19C19.7956 3 20.5589 3.3161 21.1215 3.87885C21.6838 4.44134 22 5.20421 22 6V7.00015ZM20 7.00015C20 7.55233 19.5524 8 19 8H18V6C18 5.73487 18.1053 5.48051 18.293 5.29284C18.4803 5.10544 18.7347 5 19 5C19.2653 5 19.5197 5.10544 19.707 5.29284C19.8946 5.48051 20 5.73487 20 6V7.00015ZM5.30224 18.6975C5.496 18.8912 5.7588 19 6.0329 19H12.1704C12.0601 18.6878 12 18.3519 12 18.002C11.9998 17.449 11.5506 17 10.9994 17H5.9682C5.4334 17 5 17.4336 5 17.9675C5 18.2414 5.10877 18.5041 5.30224 18.6975ZM10 8C10 7.44772 10.4477 7 11 7H13C13.5523 7 14 7.44772 14 8C14 8.55228 13.5523 9 13 9H11C10.4477 9 10 8.55228 10 8ZM10 12C10 11.4477 10.4477 11 11 11H12C12.5523 11 13 11.4477 13 12C13 12.5523 12.5523 13 12 13H11C10.4477 13 10 12.5523 10 12Z\" 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=\"M12 16C13.1046 16 14 16.8954 14 18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039ZM10.835 10.3291C10.6502 10.2368 10.437 10.2255 10.2451 10.2949L10.165 10.3291L9.32324 10.75H9C8.58579 10.75 8.25 11.0858 8.25 11.5C8.25 11.9142 8.58579 12.25 9 12.25H9.5C9.61629 12.25 9.73092 12.2228 9.83496 12.1709L10.5 11.8379L11.165 12.1709C11.2691 12.2228 11.3837 12.25 11.5 12.25H13C13.4142 12.25 13.75 11.9142 13.75 11.5C13.75 11.0858 13.4142 10.75 13 10.75H11.6768L10.835 10.3291ZM10.835 6.3291C10.6502 6.23685 10.437 6.22555 10.2451 6.29492L10.165 6.3291L9.32324 6.75H9C8.58579 6.75 8.25 7.08579 8.25 7.5C8.25 7.91421 8.58579 8.25 9 8.25H9.5C9.61629 8.25 9.73092 8.22284 9.83496 8.1709L10.5 7.83789L11.165 8.1709C11.2691 8.22284 11.3837 8.25 11.5 8.25H13C13.4142 8.25 13.75 7.91421 13.75 7.5C13.75 7.08579 13.4142 6.75 13 6.75H11.6768L10.835 6.3291Z\" fill=\"currentColor\"/><path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
7
7
  ],
8
- "mappings": "AAAA,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,gBAA6sC,EAA7sC,IAAqB,EAAO,UAAU,yDAAwD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,0iCAA0iC,KAAK,eAAc,CAAI,GAGvsC",
9
- "debugId": "DDBB585DA28F7FCB64756E2164756E21",
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,gBAAu8C,EAAv8C,IAAqB,EAAO,UAAU,yDAAwD,gBAAC,OAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m7BAAm7B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGj8C",
9
+ "debugId": "6AAA602F4FB5262764756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:h,defineProperty:C,getOwnPropertyNames:f,getOwnPropertyDescriptor:v}=Object,u=Object.prototype.hasOwnProperty;function d(e){return this[e]}var w,y,g=(e,r,t)=>{var o=e!=null&&typeof e==="object";if(o){var n=r?w??=new WeakMap:y??=new WeakMap,p=n.get(e);if(p)return p}t=e!=null?I(h(e)):{};let l=r||!e||!e.__esModule?C(t,"default",{value:e,enumerable:!0}):t;for(let s of f(e))if(!u.call(l,s))C(l,s,{get:d.bind(e,s),enumerable:!0});if(o)n.set(e,l);return l},V=(e)=>{var r=(m??=new WeakMap).get(e),t;if(r)return r;if(r=C({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of f(e))if(!u.call(r,o))C(r,o,{get:d.bind(e,o),enumerable:!(t=v(e,o))||t.enumerable})}return m.set(e,r),r},m;var H=(e)=>e;function P(e,r){this[e]=H.bind(null,r)}var x=(e,r)=>{for(var t in r)C(e,t,{get:r[t],enumerable:!0,configurable:!0,set:P.bind(r,t)})};var b={};x(b,{CentralIconBase:()=>c});module.exports=V(b);var i=g(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:p,...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:o,...p}},t&&!n&&i.default.createElement("title",null,t),e)};var S={};x(S,{default:()=>G,IconScript2:()=>B});module.exports=V(S);var a=g(require("react"));var B=(e)=>{return a.default.createElement(c,{...e,ariaLabel:"script-2, paper, page, contract, file, document, skills"},a.default.createElement("path",{d:"M12 18.002C12 18.3519 12.0601 18.6878 12.1704 19L12 18.002Z",fill:"currentColor"}),a.default.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 10H19C20.6568 10 22 8.6571 22 7.00015V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7956 3 19 3C18.9999 3 19.0001 3 19 3H9.00035C8.20622 3 7.44312 3.31379 6.87986 3.87616C6.31591 4.43844 6 5.20128 6 5.9964V15H5.9682C4.32972 15 3 16.3282 3 17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15C15.0109 21 15.0217 20.9998 15.0324 20.9995C16.6737 20.9832 18 19.6468 18 18.0016V10ZM18 6V8H19C19.5524 8 20 7.55233 20 7.00015V6C20 5.73487 19.8946 5.48051 19.707 5.29284C19.5197 5.10544 19.2653 5 19 5C18.7347 5 18.4803 5.10544 18.293 5.29284C18.1053 5.48051 18 5.73487 18 6ZM12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675C5 17.4336 5.4334 17 5.9682 17H10.9994C11.5506 17 11.9998 17.449 12 18.002",fill:"currentColor"}))},G=B;
1
+ var I=Object.create;var{getPrototypeOf:V,defineProperty:p,getOwnPropertyNames:f,getOwnPropertyDescriptor:w}=Object,u=Object.prototype.hasOwnProperty;function g(r){return this[r]}var y,P,d=(r,t,e)=>{var o=r!=null&&typeof r==="object";if(o){var n=t?y??=new WeakMap:P??=new WeakMap,a=n.get(r);if(a)return a}e=r!=null?I(V(r)):{};let l=t||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let s of f(r))if(!u.call(l,s))p(l,s,{get:g.bind(r,s),enumerable:!0});if(o)n.set(r,l);return l},h=(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:g.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 x=(r,t)=>{for(var e in t)p(r,e,{get:t[e],enumerable:!0,configurable:!0,set:S.bind(t,e)})};var v={};x(v,{CentralIconBase:()=>c});module.exports=h(v);var i=d(require("react")),c=({children:r,size:t=24,ariaLabel:e,color:o,ariaHidden:n=!0,style:a,...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,...a}},e&&!n&&i.default.createElement("title",null,e),r)};var G={};x(G,{default:()=>H,IconScript2:()=>B});module.exports=h(G);var C=d(require("react"));var B=(r)=>{return C.default.createElement(c,{...r,ariaLabel:"script-2, paper, page, contract, file, document, skills"},C.default.createElement("path",{d:"M14 18C14 19.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z",fill:"currentColor"}),C.default.createElement("path",{d:"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z",fill:"currentColor"}),C.default.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},H=B;
2
2
 
3
- //# debugId=2A55941B2660551E64756E2164756E21
3
+ //# debugId=50C0E72674D3A99B64756E2164756E21
@@ -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 d=\"M12 18.002C12 18.3519 12.0601 18.6878 12.1704 19L12 18.002Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 10H19C20.6568 10 22 8.6571 22 7.00015V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7956 3 19 3C18.9999 3 19.0001 3 19 3H9.00035C8.20622 3 7.44312 3.31379 6.87986 3.87616C6.31591 4.43844 6 5.20128 6 5.9964V15H5.9682C4.32972 15 3 16.3282 3 17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15C15.0109 21 15.0217 20.9998 15.0324 20.9995C16.6737 20.9832 18 19.6468 18 18.0016V10ZM18 6V8H19C19.5524 8 20 7.55233 20 7.00015V6C20 5.73487 19.8946 5.48051 19.707 5.29284C19.5197 5.10544 19.2653 5 19 5C18.7347 5 18.4803 5.10544 18.293 5.29284C18.1053 5.48051 18 5.73487 18 6ZM12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675C5 17.4336 5.4334 17 5.9682 17H10.9994C11.5506 17 11.9998 17.449 12 18.002\" 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.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z\" fill=\"currentColor\"/><path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z\" fill=\"currentColor\"/><path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
7
7
  ],
8
- "mappings": "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,wBAA2hC,EAA3hC,IAAqB,EAAO,UAAU,2DAA0D,wBAAC,OAAD,CAAM,EAAE,8DAA8D,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2xBAA2xB,KAAK,eAAc,CAAI,GAGrhC",
9
- "debugId": "2A55941B2660551E64756E2164756E21",
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,wBAAyqB,EAAzqB,IAAqB,EAAO,UAAU,2DAA0D,wBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGnqB",
9
+ "debugId": "50C0E72674D3A99B64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import l from"react";var C=({children:r,size:e=24,ariaLabel:n,color:p,ariaHidden:t=!0,style:a,...s})=>{return l.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:p,...a}},n&&!t&&l.createElement("title",null,n),r)};import o from"react";var i=(r)=>{return o.createElement(C,{...r,ariaLabel:"script-2, paper, page, contract, file, document, skills"},o.createElement("path",{d:"M12 18.002C12 18.3519 12.0601 18.6878 12.1704 19L12 18.002Z",fill:"currentColor"}),o.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 10H19C20.6568 10 22 8.6571 22 7.00015V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7956 3 19 3C18.9999 3 19.0001 3 19 3H9.00035C8.20622 3 7.44312 3.31379 6.87986 3.87616C6.31591 4.43844 6 5.20128 6 5.9964V15H5.9682C4.32972 15 3 16.3282 3 17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15C15.0109 21 15.0217 20.9998 15.0324 20.9995C16.6737 20.9832 18 19.6468 18 18.0016V10ZM18 6V8H19C19.5524 8 20 7.55233 20 7.00015V6C20 5.73487 19.8946 5.48051 19.707 5.29284C19.5197 5.10544 19.2653 5 19 5C18.7347 5 18.4803 5.10544 18.293 5.29284C18.1053 5.48051 18 5.73487 18 6ZM12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675C5 17.4336 5.4334 17 5.9682 17H10.9994C11.5506 17 11.9998 17.449 12 18.002",fill:"currentColor"}))},g=i;export{g as default,i as IconScript2};
1
+ import l from"react";var p=({children:e,size:r=24,ariaLabel:n,color:C,ariaHidden:o=!0,style:a,...s})=>{return l.createElement("svg",{...s,"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:C,...a}},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.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z",fill:"currentColor"}),t.createElement("path",{d:"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z",fill:"currentColor"}),t.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},d=i;export{d as default,i as IconScript2};
2
2
 
3
- //# debugId=764AD059D49D655164756E2164756E21
3
+ //# debugId=C67B843389DFA29564756E2164756E21
@@ -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 d=\"M12 18.002C12 18.3519 12.0601 18.6878 12.1704 19L12 18.002Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18 10H19C20.6568 10 22 8.6571 22 7.00015V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7956 3 19 3C18.9999 3 19.0001 3 19 3H9.00035C8.20622 3 7.44312 3.31379 6.87986 3.87616C6.31591 4.43844 6 5.20128 6 5.9964V15H5.9682C4.32972 15 3 16.3282 3 17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21H15C15.0109 21 15.0217 20.9998 15.0324 20.9995C16.6737 20.9832 18 19.6468 18 18.0016V10ZM18 6V8H19C19.5524 8 20 7.55233 20 7.00015V6C20 5.73487 19.8946 5.48051 19.707 5.29284C19.5197 5.10544 19.2653 5 19 5C18.7347 5 18.4803 5.10544 18.293 5.29284C18.1053 5.48051 18 5.73487 18 6ZM12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675C5 17.4336 5.4334 17 5.9682 17H10.9994C11.5506 17 11.9998 17.449 12 18.002\" 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.2802 14.8031 20.3696 15.932 20.8002C15.9725 20.8157 16 20.8542 16 20.8976C16 20.9541 15.9541 21 15.8976 21H5C3.34315 21 2 19.6569 2 18C2 16.8954 2.89543 16 4 16H12C13.1046 16 14 16.8954 14 18Z\" fill=\"currentColor\"/><path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18C15 16.3431 13.6569 15 12 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z\" fill=\"currentColor\"/><path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V7C21 8.10457 20.1046 9 19 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
7
7
  ],
8
- "mappings": "AAAA,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,gBAA2hC,EAA3hC,IAAqB,EAAO,UAAU,2DAA0D,gBAAC,OAAD,CAAM,EAAE,8DAA8D,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2xBAA2xB,KAAK,eAAc,CAAI,GAGrhC",
9
- "debugId": "764AD059D49D655164756E2164756E21",
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,gBAAyqB,EAAzqB,IAAqB,EAAO,UAAU,2DAA0D,gBAAC,OAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0LAA0L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAGnqB",
9
+ "debugId": "C67B843389DFA29564756E2164756E21",
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