@central-icons-react/round-filled-radius-0-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:"M20 3C20.5523 3 21 3.44772 21 4V12.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 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"}))},H=x;
2
+
3
+ //# debugId=FB176F3AA898E9FA64756E2164756E21
@@ -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=\"M20 3C20.5523 3 21 3.44772 21 4V12.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 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHandTouch;\n"
7
+ ],
8
+ "mappings": "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": "FB176F3AA898E9FA64756E2164756E21",
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:"M20 3C20.5523 3 21 3.44772 21 4V12.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 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z",fill:"currentColor"}))},V=c;export{V as default,c as IconHandTouch};
2
+
3
+ //# debugId=373A1612B3360CB964756E2164756E21
@@ -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=\"M20 3C20.5523 3 21 3.44772 21 4V12.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 17H4C3.44772 17 3 16.5523 3 16V4C3 3.44772 3.44772 3 4 3H20Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHandTouch;\n"
7
+ ],
8
+ "mappings": "AAAA,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": "373A1612B3360CB964756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:w,defineProperty:a,getOwnPropertyNames:f,getOwnPropertyDescriptor:L}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var b,y,h=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?b??=new WeakMap:y??=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=L(r,e))||t.enumerable})}return c.set(r,o),o},c;var P=(r)=>r;function M(r,o){this[r]=P.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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 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.4127 13.6621C14.6016 13.1431 15.1754 12.8755 15.6944 13.0644L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 20.2443 11.5279Z",fill:"currentColor"}))},S=B;
1
+ var I=Object.create;var{getPrototypeOf:w,defineProperty:a,getOwnPropertyNames:f,getOwnPropertyDescriptor:L}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var b,y,h=(r,o,t)=>{var e=r!=null&&typeof r==="object";if(e){var n=o?b??=new WeakMap:y??=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=L(r,e))||t.enumerable})}return c.set(r,o),o},c;var P=(r)=>r;function M(r,o){this[r]=P.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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 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.4125 13.6621C14.6014 13.1431 15.1752 12.8755 15.6942 13.0644L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z",fill:"currentColor"}))},S=B;
2
2
 
3
- //# debugId=6E6FB464FCAED3BC64756E2164756E21
3
+ //# debugId=8FF5C5155460EAEB64756E2164756E21
@@ -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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><path d=\"M20.2443 11.5279C21.931 12.1418 22.8007 14.0068 22.1868 15.6935L21.5882 17.338C20.8327 19.4139 18.5373 20.4842 16.4614 19.7287C14.3855 18.9731 13.3151 16.6777 14.0707 14.6018L14.4127 13.6621C14.6016 13.1431 15.1754 12.8755 15.6944 13.0644L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 20.2443 11.5279Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
6
+ "import React 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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><path d=\"M20.2441 11.5279C21.9308 12.1418 22.8004 14.0068 22.1865 15.6935L21.588 17.338C20.8324 19.4139 18.537 20.4842 16.4611 19.7287C14.3852 18.9731 13.3149 16.6777 14.0704 14.6018L14.4125 13.6621C14.6014 13.1431 15.1752 12.8755 15.6942 13.0644L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
7
7
  ],
8
- "mappings": "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,wBAA4+C,EAA5+C,IAAqB,EAAO,UAAU,8BAA6B,wBAAC,OAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kTAAkT,KAAK,eAAc,CAAI,GAGt+C",
9
- "debugId": "6E6FB464FCAED3BC64756E2164756E21",
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,wBAAw+C,EAAx+C,IAAqB,EAAO,UAAU,8BAA6B,wBAAC,OAAD,CAAM,EAAE,uWAAuW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oWAAoW,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,iTAAiT,KAAK,eAAc,CAAI,GAGl+C",
9
+ "debugId": "8FF5C5155460EAEB64756E2164756E21",
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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 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.4127 13.6621C14.6016 13.1431 15.1754 12.8755 15.6944 13.0644L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 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.4125 13.6621C14.6014 13.1431 15.1752 12.8755 15.6942 13.0644L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z",fill:"currentColor"}))},h=i;export{h as default,i as IconMagicHands};
2
2
 
3
- //# debugId=AE2F336C0D50CD6264756E2164756E21
3
+ //# debugId=AE75AD57DF4B045B64756E2164756E21
@@ -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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><path d=\"M20.2443 11.5279C21.931 12.1418 22.8007 14.0068 22.1868 15.6935L21.5882 17.338C20.8327 19.4139 18.5373 20.4842 16.4614 19.7287C14.3855 18.9731 13.3151 16.6777 14.0707 14.6018L14.4127 13.6621C14.6016 13.1431 15.1754 12.8755 15.6944 13.0644L16.1732 13.2387C16.8671 11.7054 18.6367 10.9428 20.2443 11.5279Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
6
+ "import React 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.58813 13.6621C9.39923 13.1431 8.82539 12.8755 8.30641 13.0644L7.82767 13.2387C7.13376 11.7054 5.36414 10.9428 3.75651 11.5279Z\" fill=\"currentColor\"/><path d=\"M20.2441 11.5279C21.9308 12.1418 22.8004 14.0068 22.1865 15.6935L21.588 17.338C20.8324 19.4139 18.537 20.4842 16.4611 19.7287C14.3852 18.9731 13.3149 16.6777 14.0704 14.6018L14.4125 13.6621C14.6014 13.1431 15.1752 12.8755 15.6942 13.0644L16.1729 13.2387C16.8668 11.7054 18.6364 10.9428 20.2441 11.5279Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconMagicHands;\n"
7
7
  ],
8
- "mappings": "AAAA,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,gBAA4+C,EAA5+C,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,wWAAwW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sWAAsW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kTAAkT,KAAK,eAAc,CAAI,GAGt+C",
9
- "debugId": "AE2F336C0D50CD6264756E2164756E21",
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,gBAAw+C,EAAx+C,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,uWAAuW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oWAAoW,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mTAAmT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iTAAiT,KAAK,eAAc,CAAI,GAGl+C",
9
+ "debugId": "AE75AD57DF4B045B64756E2164756E21",
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 V(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,p=n.get(e);if(p)return p}t=e!=null?B(I(e)):{};let C=r||!e||!e.__esModule?l(t,"default",{value:e,enumerable:!0}):t;for(let a of f(e))if(!u.call(C,a))l(C,a,{get:V.bind(e,a),enumerable:!0});if(o)n.set(e,C);return C},H=(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:V.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 g=(e,r)=>{for(var t in r)l(e,t,{get:r[t],enumerable:!0,configurable:!0,set:P.bind(r,t)})};var b={};g(b,{CentralIconBase:()=>c});module.exports=H(b);var s=d(require("react")),c=({children:e,size:r=24,ariaLabel:t,color:o,ariaHidden:n=!0,style:p,...C})=>{return s.default.createElement("svg",{...C,"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&&s.default.createElement("title",null,t),e)};var M={};g(M,{default:()=>S,IconScript:()=>x});module.exports=H(M);var i=d(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:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 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 8ZM11 11C10.4477 11 10 11.4477 10 12C10 12.5523 10.4477 13 11 13H12C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11H11Z",fill:"currentColor"}))},S=x;
1
+ var h=Object.create;var{getPrototypeOf:x,defineProperty:l,getOwnPropertyNames:f,getOwnPropertyDescriptor:B}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var I,v,H=(r,e,t)=>{var o=r!=null&&typeof r==="object";if(o){var C=e?I??=new WeakMap:v??=new WeakMap,a=C.get(r);if(a)return a}t=r!=null?h(x(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=B(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 V=(r,e)=>{for(var t in e)l(r,t,{get:e[t],enumerable:!0,configurable:!0,set:y.bind(e,t)})};var P={};V(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={};V(b,{default:()=>M,IconScript:()=>g});module.exports=L(b);var p=H(require("react"));var g=(r)=>{return p.default.createElement(c,{...r,ariaLabel:"script, paper, page, contract, file, document, skills"},p.default.createElement("path",{d:"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z",fill:"currentColor"}),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 18V17C15 15.8954 14.1046 15 13 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.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},M=g;
2
2
 
3
- //# debugId=742A0BF2C79C4B8164756E2164756E21
3
+ //# debugId=1E62D1928B02225764756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 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 8ZM11 11C10.4477 11 10 11.4477 10 12C10 12.5523 10.4477 13 11 13H12C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11H11Z\" 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=\"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.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.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
7
7
  ],
8
- "mappings": "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,wBAAkmC,EAAlmC,IAAqB,EAAO,UAAU,yDAAwD,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+7BAA+7B,KAAK,eAAc,CAAI,GAG5lC",
9
- "debugId": "742A0BF2C79C4B8164756E2164756E21",
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,wBAAg9C,EAAh9C,IAAqB,EAAO,UAAU,yDAAwD,wBAAC,OAAD,CAAM,EAAE,uNAAuN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s7BAAs7B,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG18C",
9
+ "debugId": "1E62D1928B02225764756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import n from"react";var C=({children:r,size:e=24,ariaLabel:o,color:p,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:p,...a}},o&&!t&&n.createElement("title",null,o),r)};import l from"react";var c=(r)=>{return l.createElement(C,{...r,ariaLabel:"script, paper, page, contract, file, document, skills"},l.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 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 8ZM11 11C10.4477 11 10 11.4477 10 12C10 12.5523 10.4477 13 11 13H12C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11H11Z",fill:"currentColor"}))},d=c;export{d 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:"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z",fill:"currentColor"}),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 18V17C15 15.8954 14.1046 15 13 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.5V8C21 8.55228 20.5523 9 20 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=2A0A1DD20F1A8F9164756E2164756E21
3
+ //# debugId=17ACDCB4B027125A64756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17ZM10 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 8ZM11 11C10.4477 11 10 11.4477 10 12C10 12.5523 10.4477 13 11 13H12C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11H11Z\" 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=\"M13 16C13.5523 16 14 16.4477 14 17V18C14 19.28 14.803 20.3691 15.9316 20.7998C15.9721 20.8153 15.9999 20.8541 16 20.8975C16 20.954 15.954 21 15.8975 21H5C3.34315 21 2 19.6569 2 18V17C2 16.4477 2.44772 16 3 16H13Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M17.5039 3C17.1892 3.41817 17 3.93631 17 4.5V19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.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.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript;\n"
7
7
  ],
8
- "mappings": "AAAA,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,gBAAkmC,EAAlmC,IAAqB,EAAO,UAAU,yDAAwD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+7BAA+7B,KAAK,eAAc,CAAI,GAG5lC",
9
- "debugId": "2A0A1DD20F1A8F9164756E2164756E21",
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,gBAAg9C,EAAh9C,IAAqB,EAAO,UAAU,yDAAwD,gBAAC,OAAD,CAAM,EAAE,uNAAuN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s7BAAs7B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG18C",
9
+ "debugId": "17ACDCB4B027125A64756E2164756E21",
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 H=(e)=>e;function P(e,r){this[e]=H.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 S={};x(S,{default:()=>G,IconScript2:()=>B});module.exports=g(S);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:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z",fill:"currentColor"}))},G=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,a=n.get(r);if(a)return a}e=r!=null?B(I(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:V.bind(r,s),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: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={};h(G,{default:()=>H,IconScript2:()=>x});module.exports=d(G);var C=g(require("react"));var x=(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 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z",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 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z",fill:"currentColor"}),C.default.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},H=x;
2
2
 
3
- //# debugId=34A4A335969F7E6364756E2164756E21
3
+ //# debugId=B6DA5C809FC02C0764756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
6
+ "import React 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 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z\" fill=\"currentColor\"/><path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z\" fill=\"currentColor\"/><path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
7
7
  ],
8
- "mappings": "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,wBAAm3B,EAAn3B,IAAqB,EAAO,UAAU,2DAA0D,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8sBAA8sB,KAAK,eAAc,CAAI,GAG72B",
9
- "debugId": "34A4A335969F7E6364756E2164756E21",
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,wBAAkrB,EAAlrB,IAAqB,EAAO,UAAU,2DAA0D,wBAAC,OAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG5qB",
9
+ "debugId": "B6DA5C809FC02C0764756E2164756E21",
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:"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z",fill:"currentColor"}))},d=c;export{d as default,c 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 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z",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 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z",fill:"currentColor"}),t.createElement("path",{d:"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z",fill:"currentColor"}))},g=i;export{g as default,i as IconScript2};
2
2
 
3
- //# debugId=E3AE936B1073508164756E2164756E21
3
+ //# debugId=F5A597198A0A959864756E2164756E21
@@ -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=\"M18.9997 3H9.00035C8.20624 3 7.44316 3.31377 6.8799 3.87612C6.31592 4.4384 6 5.20126 6 5.9964V15H4C3.44772 15 3 15.4477 3 16V17.9675C3 18.7713 3.31912 19.543 3.88829 20.1119C4.45715 20.6806 5.22857 21 6.0329 21C9.02126 21 12.0096 20.9996 14.998 20.9996H15.002C16.6573 20.9996 18 19.6569 18 18.0016V10H21C21.5523 10 22 9.55226 22 8.99998V6C22 5.20421 21.6838 4.44134 21.1215 3.87885C20.5589 3.3161 19.7953 3 18.9997 3ZM18 6V8H20V6C20 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 6ZM5 17H12V18.0016C12 18.3516 12.06 18.6877 12.1704 19H6.0329C5.7588 19 5.496 18.8912 5.30224 18.6975C5.10877 18.5041 5 18.2414 5 17.9675V17Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
6
+ "import React 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 18V17C2 16.4477 2.44772 16 3 16H13C13.5523 16 14 16.4477 14 17V18Z\" fill=\"currentColor\"/><path d=\"M17 19C17 19.5522 16.5254 20.0209 16.041 19.7559C15.4207 19.4163 15 18.7571 15 18V17C15 15.8954 14.1046 15 13 15H5V6C5 4.34315 6.34315 3 8 3H17.5039C17.1892 3.41817 17 3.93631 17 4.5V19Z\" fill=\"currentColor\"/><path d=\"M19.5 3C20.3284 3 21 3.67157 21 4.5V8C21 8.55228 20.5523 9 20 9H18V4.5C18 3.67157 18.6716 3 19.5 3Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconScript2;\n"
7
7
  ],
8
- "mappings": "AAAA,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,gBAAm3B,EAAn3B,IAAqB,EAAO,UAAU,2DAA0D,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8sBAA8sB,KAAK,eAAc,CAAI,GAG72B",
9
- "debugId": "E3AE936B1073508164756E2164756E21",
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,gBAAkrB,EAAlrB,IAAqB,EAAO,UAAU,2DAA0D,gBAAC,OAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6LAA6L,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sGAAsG,KAAK,eAAc,CAAI,GAG5qB",
9
+ "debugId": "F5A597198A0A959864756E2164756E21",
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