@central-icons-react/round-outlined-radius-3-stroke-1 1.1.258 → 1.1.260

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 IconExtendImage: React.FC<CentralIconBaseProps>;
4
+ export default IconExtendImage;
@@ -0,0 +1,3 @@
1
+ var f=Object.create;var{getPrototypeOf:j,defineProperty:p,getOwnPropertyNames:L,getOwnPropertyDescriptor:I}=Object,c=Object.prototype.hasOwnProperty;function C(r){return this[r]}var B,M,h=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var s=o?B??=new WeakMap:M??=new WeakMap,u=s.get(r);if(u)return u}e=r!=null?f(j(r)):{};let i=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let d of L(r))if(!c.call(i,d))p(i,d,{get:C.bind(r,d),enumerable:!0});if(t)s.set(r,i);return i},m=(r)=>{var o=(l??=new WeakMap).get(r),e;if(o)return o;if(o=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of L(r))if(!c.call(o,t))p(o,t,{get:C.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return l.set(r,o),o},l;var w=(r)=>r;function y(r,o){this[r]=w.bind(null,o)}var x=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var P={};x(P,{CentralIconBase:()=>k});module.exports=m(P);var a=h(require("react")),k=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:s=!0,style:u,...i})=>{return a.default.createElement("svg",{...i,"aria-hidden":s,role:s?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:t,...u}},e&&!s&&a.default.createElement("title",null,e),r)};var b={};x(b,{default:()=>v,IconExtendImage:()=>g});module.exports=m(b);var n=h(require("react"));var g=(r)=>{return n.default.createElement(k,{...r,ariaLabel:"extend-image"},n.default.createElement("path",{d:"M7.5 3.5L3.5 7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M7 17L3.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M20.5 3.5L17 7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M13.5 3.5L10.5 6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M6.5 10.5L3.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M20.5 10.5L17.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M13.5 17.5L10.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M20.5 16.5L16.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("rect",{x:"6.5",y:"6.5",width:"11",height:"11",rx:"3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},v=g;
2
+
3
+ //# debugId=A4E1007F2DC172B064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconExtendImage/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 IconExtendImage: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"extend-image\"><path d=\"M7.5 3.5L3.5 7.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7 17L3.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5L17 7\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5 3.5L10.5 6.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.5 10.5L3.5 13.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 10.5L17.5 13.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5 17.5L10.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 16.5L16.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"6.5\" y=\"6.5\" width=\"11\" height=\"11\" rx=\"3\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconExtendImage;\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,2ECjCY,IAAlB,sBAGO,IAAM,EAAkD,CAAC,IAAU,CACxE,OAAO,wBAAm7B,EAAn7B,IAAqB,EAAO,UAAU,gBAAe,wBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,KAAK,OAAO,KAAK,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG76B",
9
+ "debugId": "A4E1007F2DC172B064756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import s from"react";var i=({children:e,size:o=24,ariaLabel:t,color:p,ariaHidden:n=!0,style:u,...d})=>{return s.createElement("svg",{...d,"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:p,...u}},t&&!n&&s.createElement("title",null,t),e)};import r from"react";var a=(e)=>{return r.createElement(i,{...e,ariaLabel:"extend-image"},r.createElement("path",{d:"M7.5 3.5L3.5 7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M7 17L3.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M20.5 3.5L17 7",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M13.5 3.5L10.5 6.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M6.5 10.5L3.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M20.5 10.5L17.5 13.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M13.5 17.5L10.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M20.5 16.5L16.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("rect",{x:"6.5",y:"6.5",width:"11",height:"11",rx:"3",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},h=a;export{h as default,a as IconExtendImage};
2
+
3
+ //# debugId=87CFB2A1460B602C64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconExtendImage/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 IconExtendImage: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"extend-image\"><path d=\"M7.5 3.5L3.5 7.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M7 17L3.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5L17 7\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5 3.5L10.5 6.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.5 10.5L3.5 13.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 10.5L17.5 13.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5 17.5L10.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 16.5L16.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><rect x=\"6.5\" y=\"6.5\" width=\"11\" height=\"11\" rx=\"3\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconExtendImage;\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,EAAkD,CAAC,IAAU,CACxE,OAAO,gBAAm7B,EAAn7B,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,mBAAmB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iBAAiB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qBAAqB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uBAAuB,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,MAAM,EAAE,MAAM,MAAM,KAAK,OAAO,KAAK,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG76B",
9
+ "debugId": "87CFB2A1460B602C64756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var P=Object.create;var{getPrototypeOf:h,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,g=Object.prototype.hasOwnProperty;function d(e){return this[e]}var y,V,f=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?y??=new WeakMap:V??=new WeakMap,l=n.get(e);if(l)return l}o=e!=null?P(h(e)):{};let p=r||!e||!e.__esModule?a(o,"default",{value:e,enumerable:!0}):o;for(let s of u(e))if(!g.call(p,s))a(p,s,{get:d.bind(e,s),enumerable:!0});if(t)n.set(e,p);return p},x=(e)=>{var r=(m??=new WeakMap).get(e),o;if(r)return r;if(r=a({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of u(e))if(!g.call(r,t))a(r,t,{get:d.bind(e,t),enumerable:!(o=w(e,t))||o.enumerable})}return m.set(e,r),r},m;var b=(e)=>e;function v(e,r){this[e]=b.bind(null,r)}var B=(e,r)=>{for(var o in r)a(e,o,{get:r[o],enumerable:!0,configurable:!0,set:v.bind(r,o)})};var G={};B(G,{CentralIconBase:()=>c});module.exports=x(G);var C=f(require("react")),c=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:l,...p})=>{return C.default.createElement("svg",{...p,"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,...l}},o&&!n&&C.default.createElement("title",null,o),e)};var S={};B(S,{default:()=>k,IconPageCloud:()=>I});module.exports=x(S);var i=f(require("react"));var I=(e)=>{return i.default.createElement(c,{...e,ariaLabel:"page-cloud"},i.default.createElement("path",{d:"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13M16.75 21.5C15.2312 21.5 14 20.2688 14 18.75C14 17.2312 15.2312 16 16.75 16C17.8275 16 18.7594 16.6194 19.2105 17.5209C19.3052 17.5071 19.4018 17.5 19.5 17.5C20.6046 17.5 21.5 18.3954 21.5 19.5C21.5 20.6046 20.6046 21.5 19.5 21.5H16.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},k=I;
1
+ var h=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:m,getOwnPropertyDescriptor:w}=Object,d=Object.prototype.hasOwnProperty;function g(r){return this[r]}var y,V,f=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?y??=new WeakMap:V??=new WeakMap,s=n.get(r);if(s)return s}o=r!=null?h(P(r)):{};let p=e||!r||!r.__esModule?a(o,"default",{value:r,enumerable:!0}):o;for(let C of m(r))if(!d.call(p,C))a(p,C,{get:g.bind(r,C),enumerable:!0});if(t)n.set(r,p);return p},x=(r)=>{var e=(u??=new WeakMap).get(r),o;if(e)return e;if(e=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of m(r))if(!d.call(e,t))a(e,t,{get:g.bind(r,t),enumerable:!(o=w(r,t))||o.enumerable})}return u.set(r,e),e},u;var b=(r)=>r;function k(r,e){this[r]=b.bind(null,e)}var B=(r,e)=>{for(var o in e)a(r,o,{get:e[o],enumerable:!0,configurable:!0,set:k.bind(e,o)})};var v={};B(v,{CentralIconBase:()=>i});module.exports=x(v);var c=f(require("react")),i=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:s,...p})=>{return c.default.createElement("svg",{...p,"aria-hidden":n,role:n?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...s}},o&&!n&&c.default.createElement("title",null,o),r)};var G={};B(G,{default:()=>L,IconPageCloud:()=>I});module.exports=x(G);var l=f(require("react"));var I=(r)=>{return l.default.createElement(i,{...r,ariaLabel:"page-cloud"},l.default.createElement("path",{d:"M14 18.75C14 20.2688 15.2312 21.5 16.75 21.5H19.5C20.6046 21.5 21.5 20.6046 21.5 19.5C21.5 18.3954 20.6046 17.5 19.5 17.5C19.4018 17.5 19.3052 17.5071 19.2105 17.5209C18.7594 16.6194 17.8275 16 16.75 16C15.2312 16 14 17.2312 14 18.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),l.default.createElement("path",{d:"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13",stroke:"currentColor",strokeLinecap:"round"}))},L=I;
2
2
 
3
- //# debugId=162951ED5BB20A4D64756E2164756E21
3
+ //# debugId=9764297B3ACE462464756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageCloud/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 IconPageCloud: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-cloud\"><path d=\"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13M16.75 21.5C15.2312 21.5 14 20.2688 14 18.75C14 17.2312 15.2312 16 16.75 16C17.8275 16 18.7594 16.6194 19.2105 17.5209C19.3052 17.5071 19.4018 17.5 19.5 17.5C20.6046 17.5 21.5 18.3954 21.5 19.5C21.5 20.6046 20.6046 21.5 19.5 21.5H16.75Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPageCloud;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageCloud: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-cloud\"><path d=\"M14 18.75C14 20.2688 15.2312 21.5 16.75 21.5H19.5C20.6046 21.5 21.5 20.6046 21.5 19.5C21.5 18.3954 20.6046 17.5 19.5 17.5C19.4018 17.5 19.3052 17.5071 19.2105 17.5209C18.7594 16.6194 17.8275 16 16.75 16C15.2312 16 14 17.2312 14 18.75Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPageCloud;\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,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,wBAA8e,EAA9e,IAAqB,EAAO,UAAU,cAAa,wBAAC,OAAD,CAAM,EAAE,6WAA6W,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGxe",
9
- "debugId": "162951ED5BB20A4D64756E2164756E21",
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,wBAAoiB,EAApiB,IAAqB,EAAO,UAAU,cAAa,wBAAC,OAAD,CAAM,EAAE,6OAA6O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iIAAiI,OAAO,eAAe,cAAc,QAAO,CAAI,GAG9hB",
9
+ "debugId": "9764297B3ACE462464756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import n from"react";var p=({children:r,size:e=24,ariaLabel:t,color:l,ariaHidden:o=!0,style:s,...C})=>{return n.createElement("svg",{...C,"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:l,...s}},t&&!o&&n.createElement("title",null,t),r)};import a from"react";var c=(r)=>{return a.createElement(p,{...r,ariaLabel:"page-cloud"},a.createElement("path",{d:"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13M16.75 21.5C15.2312 21.5 14 20.2688 14 18.75C14 17.2312 15.2312 16 16.75 16C17.8275 16 18.7594 16.6194 19.2105 17.5209C19.3052 17.5071 19.4018 17.5 19.5 17.5C20.6046 17.5 21.5 18.3954 21.5 19.5C21.5 20.6046 20.6046 21.5 19.5 21.5H16.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=c;export{f as default,c as IconPageCloud};
1
+ import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...C})=>{return p.createElement("svg",{...C,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},n&&!o&&p.createElement("title",null,n),e)};import t from"react";var c=(e)=>{return t.createElement(a,{...e,ariaLabel:"page-cloud"},t.createElement("path",{d:"M14 18.75C14 20.2688 15.2312 21.5 16.75 21.5H19.5C20.6046 21.5 21.5 20.6046 21.5 19.5C21.5 18.3954 20.6046 17.5 19.5 17.5C19.4018 17.5 19.3052 17.5071 19.2105 17.5209C18.7594 16.6194 17.8275 16 16.75 16C15.2312 16 14 17.2312 14 18.75Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13",stroke:"currentColor",strokeLinecap:"round"}))},f=c;export{f as default,c as IconPageCloud};
2
2
 
3
- //# debugId=9EE86C1EA5CB743B64756E2164756E21
3
+ //# debugId=A8F7775D2A6BBCD164756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPageCloud/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 IconPageCloud: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-cloud\"><path d=\"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13M16.75 21.5C15.2312 21.5 14 20.2688 14 18.75C14 17.2312 15.2312 16 16.75 16C17.8275 16 18.7594 16.6194 19.2105 17.5209C19.3052 17.5071 19.4018 17.5 19.5 17.5C20.6046 17.5 21.5 18.3954 21.5 19.5C21.5 20.6046 20.6046 21.5 19.5 21.5H16.75Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPageCloud;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconPageCloud: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"page-cloud\"><path d=\"M14 18.75C14 20.2688 15.2312 21.5 16.75 21.5H19.5C20.6046 21.5 21.5 20.6046 21.5 19.5C21.5 18.3954 20.6046 17.5 19.5 17.5C19.4018 17.5 19.3052 17.5071 19.2105 17.5209C18.7594 16.6194 17.8275 16 16.75 16C15.2312 16 14 17.2312 14 18.75Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M11.5 21.5H7.5C5.84315 21.5 4.5 20.1569 4.5 18.5V5.5C4.5 3.84315 5.84315 2.5 7.5 2.5H16.5C18.1569 2.5 19.5 3.84315 19.5 5.5V13\" stroke=\"currentColor\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPageCloud;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAA8e,EAA9e,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,6WAA6W,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGxe",
9
- "debugId": "9EE86C1EA5CB743B64756E2164756E21",
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,gBAAoiB,EAApiB,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,6OAA6O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,iIAAiI,OAAO,eAAe,cAAc,QAAO,CAAI,GAG9hB",
9
+ "debugId": "A8F7775D2A6BBCD164756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconReframe: React.FC<CentralIconBaseProps>;
4
+ export default IconReframe;
@@ -0,0 +1,3 @@
1
+ var I=Object.create;var{getPrototypeOf:h,defineProperty:p,getOwnPropertyNames:C,getOwnPropertyDescriptor:V}=Object,f=Object.prototype.hasOwnProperty;function L(r){return this[r]}var k,w,d=(r,e,o)=>{var t=r!=null&&typeof r==="object";if(t){var n=e?k??=new WeakMap:w??=new WeakMap,s=n.get(r);if(s)return s}o=r!=null?I(h(r)):{};let a=e||!r||!r.__esModule?p(o,"default",{value:r,enumerable:!0}):o;for(let i of C(r))if(!f.call(a,i))p(a,i,{get:L.bind(r,i),enumerable:!0});if(t)n.set(r,a);return a},g=(r)=>{var e=(u??=new WeakMap).get(r),o;if(e)return e;if(e=p({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of C(r))if(!f.call(e,t))p(e,t,{get:L.bind(r,t),enumerable:!(o=V(r,t))||o.enumerable})}return u.set(r,e),e},u;var y=(r)=>r;function M(r,e){this[r]=y.bind(null,e)}var x=(r,e)=>{for(var o in e)p(r,o,{get:e[o],enumerable:!0,configurable:!0,set:M.bind(e,o)})};var P={};x(P,{CentralIconBase:()=>c});module.exports=g(P);var m=d(require("react")),c=({children:r,size:e=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:s,...a})=>{return m.default.createElement("svg",{...a,"aria-hidden":n,role:n?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:t,...s}},o&&!n&&m.default.createElement("title",null,o),r)};var b={};x(b,{default:()=>v,IconReframe:()=>B});module.exports=g(b);var l=d(require("react"));var B=(r)=>{return l.default.createElement(c,{...r,ariaLabel:"reframe, 3D, scale"},l.default.createElement("path",{d:"M7.25 4.09739L11.5 1.64366C11.8094 1.46502 12.1906 1.46502 12.5 1.64366L16.75 4.09739M21.5 12.3246V17.2321C21.5 17.5894 21.3094 17.9195 21 18.0981L16.75 20.5519M7.25 20.5519L3 18.0981C2.6906 17.9195 2.5 17.5894 2.5 17.2321V12.3246",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),l.default.createElement("path",{d:"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},v=B;
2
+
3
+ //# debugId=06CE558BC256C77864756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconReframe/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 IconReframe: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"reframe, 3D, scale\"><path d=\"M7.25 4.09739L11.5 1.64366C11.8094 1.46502 12.1906 1.46502 12.5 1.64366L16.75 4.09739M21.5 12.3246V17.2321C21.5 17.5894 21.3094 17.9195 21 18.0981L16.75 20.5519M7.25 20.5519L3 18.0981C2.6906 17.9195 2.5 17.5894 2.5 17.2321V12.3246\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconReframe;\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,uECjCY,IAAlB,sBAGO,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAA4e,EAA5e,IAAqB,EAAO,UAAU,sBAAqB,wBAAC,OAAD,CAAM,EAAE,yOAAyO,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGte",
9
+ "debugId": "06CE558BC256C77864756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import a from"react";var p=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:l,...i})=>{return a.createElement("svg",{...i,"aria-hidden":o,role:o?void 0:"img",width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:s,...l}},n&&!o&&a.createElement("title",null,n),e)};import t from"react";var m=(e)=>{return t.createElement(p,{...e,ariaLabel:"reframe, 3D, scale"},t.createElement("path",{d:"M7.25 4.09739L11.5 1.64366C11.8094 1.46502 12.1906 1.46502 12.5 1.64366L16.75 4.09739M21.5 12.3246V17.2321C21.5 17.5894 21.3094 17.9195 21 18.0981L16.75 20.5519M7.25 20.5519L3 18.0981C2.6906 17.9195 2.5 17.5894 2.5 17.2321V12.3246",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},d=m;export{d as default,m as IconReframe};
2
+
3
+ //# debugId=3AE9F98EAA58110064756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconReframe/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 IconReframe: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"reframe, 3D, scale\"><path d=\"M7.25 4.09739L11.5 1.64366C11.8094 1.46502 12.1906 1.46502 12.5 1.64366L16.75 4.09739M21.5 12.3246V17.2321C21.5 17.5894 21.3094 17.9195 21 18.0981L16.75 20.5519M7.25 20.5519L3 18.0981C2.6906 17.9195 2.5 17.5894 2.5 17.2321V12.3246\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 2V12M12 12L3 17.5037M12 12L20.9939 17.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconReframe;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAA4e,EAA5e,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,EAAE,yOAAyO,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGte",
9
+ "debugId": "3AE9F98EAA58110064756E2164756E21",
10
+ "names": []
11
+ }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:L,defineProperty:a,getOwnPropertyNames:g,getOwnPropertyDescriptor:V}=Object,u=Object.prototype.hasOwnProperty;function d(e){return this[e]}var b,w,f=(e,r,o)=>{var t=e!=null&&typeof e==="object";if(t){var n=r?b??=new WeakMap:w??=new WeakMap,s=n.get(e);if(s)return s}o=e!=null?I(L(e)):{};let p=r||!e||!e.__esModule?a(o,"default",{value:e,enumerable:!0}):o;for(let l of g(e))if(!u.call(p,l))a(p,l,{get:d.bind(e,l),enumerable:!0});if(t)n.set(e,p);return p},B=(e)=>{var r=(c??=new WeakMap).get(e),o;if(r)return r;if(r=a({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var t of g(e))if(!u.call(r,t))a(r,t,{get:d.bind(e,t),enumerable:!(o=V(e,t))||o.enumerable})}return c.set(e,r),r},c;var y=(e)=>e;function P(e,r){this[e]=y.bind(null,r)}var h=(e,r)=>{for(var o in r)a(e,o,{get:r[o],enumerable:!0,configurable:!0,set:P.bind(r,o)})};var S={};h(S,{CentralIconBase:()=>C});module.exports=B(S);var i=f(require("react")),C=({children:e,size:r=24,ariaLabel:o,color:t,ariaHidden:n=!0,style:s,...p})=>{return i.default.createElement("svg",{...p,"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,...s}},o&&!n&&i.default.createElement("title",null,o),e)};var v={};h(v,{default:()=>G,IconShoppingBagEdit2:()=>x});module.exports=B(v);var m=f(require("react"));var x=(e)=>{return m.default.createElement(C,{...e,ariaLabel:"shopping-bag-edit-2"},m.default.createElement("path",{d:"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M10.4986 21.5H7.45759C5.63195 21.5 4.22956 19.883 4.48775 18.0757L5.6306 10.0757C5.84174 8.59779 7.1075 7.5 8.60045 7.5H15.3967C16.8896 7.5 18.1554 8.59779 18.3665 10.0757L18.7129 12.5M13.4986 20.1666V22.4999H15.8319L20.0819 18.2499C20.7262 17.6056 20.7262 16.5609 20.0819 15.9166C19.4376 15.2723 18.3929 15.2723 17.7486 15.9166L13.4986 20.1666Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},G=x;
1
+ var B=Object.create;var{getPrototypeOf:x,defineProperty:s,getOwnPropertyNames:d,getOwnPropertyDescriptor:I}=Object,m=Object.prototype.hasOwnProperty;function g(r){return this[r]}var V,b,L=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?V??=new WeakMap:b??=new WeakMap,i=n.get(r);if(i)return i}e=r!=null?B(x(r)):{};let p=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let l of d(r))if(!m.call(p,l))s(p,l,{get:g.bind(r,l),enumerable:!0});if(t)n.set(r,p);return p},h=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of d(r))if(!m.call(o,t))s(o,t,{get:g.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return c.set(r,o),o},c;var w=(r)=>r;function y(r,o){this[r]=w.bind(null,o)}var f=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var P={};f(P,{CentralIconBase:()=>u});module.exports=h(P);var C=L(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:i,...p})=>{return C.default.createElement("svg",{...p,"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:t,...i}},e&&!n&&C.default.createElement("title",null,e),r)};var S={};f(S,{default:()=>v,IconShoppingBagEdit2:()=>k});module.exports=h(S);var a=L(require("react"));var k=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"shopping-bag-edit-2"},a.default.createElement("path",{d:"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M10.5 21.5H7.45903C5.63338 21.5 4.23099 19.883 4.48918 18.0757L5.63204 10.0757C5.84317 8.59779 7.10894 7.5 8.60189 7.5H15.3981C16.8911 7.5 18.1568 8.59779 18.368 10.0757L18.7143 12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M13.5 22.5002V20.1668L17.75 15.9168C18.3943 15.2725 19.439 15.2725 20.0833 15.9168C20.7277 16.5612 20.7277 17.6058 20.0833 18.2502L15.8333 22.5002H13.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},v=k;
2
2
 
3
- //# debugId=FE0E5AB84FB6454E64756E2164756E21
3
+ //# debugId=F9D8C7226BE9338A64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShoppingBagEdit2/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 IconShoppingBagEdit2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-edit-2\"><path d=\"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M10.4986 21.5H7.45759C5.63195 21.5 4.22956 19.883 4.48775 18.0757L5.6306 10.0757C5.84174 8.59779 7.1075 7.5 8.60045 7.5H15.3967C16.8896 7.5 18.1554 8.59779 18.3665 10.0757L18.7129 12.5M13.4986 20.1666V22.4999H15.8319L20.0819 18.2499C20.7262 17.6056 20.7262 16.5609 20.0819 15.9166C19.4376 15.2723 18.3929 15.2723 17.7486 15.9166L13.4986 20.1666Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagEdit2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShoppingBagEdit2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-edit-2\"><path d=\"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.5 21.5H7.45903C5.63338 21.5 4.23099 19.883 4.48918 18.0757L5.63204 10.0757C5.84317 8.59779 7.10894 7.5 8.60189 7.5H15.3981C16.8911 7.5 18.1568 8.59779 18.368 10.0757L18.7143 12.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5 22.5002V20.1668L17.75 15.9168C18.3943 15.2725 19.439 15.2725 20.0833 15.9168C20.7277 16.5612 20.7277 17.6058 20.0833 18.2502L15.8333 22.5002H13.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagEdit2;\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,gFCjCY,IAAlB,sBAGO,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAAkkB,EAAlkB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,wbAAwb,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5jB",
9
- "debugId": "FE0E5AB84FB6454E64756E2164756E21",
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,gFCjCY,IAAlB,sBAGO,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAAisB,EAAjsB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2JAA2J,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAG3rB",
9
+ "debugId": "F9D8C7226BE9338A64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import n from"react";var p=({children:r,size:e=24,ariaLabel:t,color:s,ariaHidden:o=!0,style:l,...i})=>{return n.createElement("svg",{...i,"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:s,...l}},t&&!o&&n.createElement("title",null,t),r)};import a from"react";var C=(r)=>{return a.createElement(p,{...r,ariaLabel:"shopping-bag-edit-2"},a.createElement("path",{d:"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M10.4986 21.5H7.45759C5.63195 21.5 4.22956 19.883 4.48775 18.0757L5.6306 10.0757C5.84174 8.59779 7.1075 7.5 8.60045 7.5H15.3967C16.8896 7.5 18.1554 8.59779 18.3665 10.0757L18.7129 12.5M13.4986 20.1666V22.4999H15.8319L20.0819 18.2499C20.7262 17.6056 20.7262 16.5609 20.0819 15.9166C19.4376 15.2723 18.3929 15.2723 17.7486 15.9166L13.4986 20.1666Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=C;export{f as default,C as IconShoppingBagEdit2};
1
+ import p from"react";var s=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:i,...l})=>{return p.createElement("svg",{...l,"aria-hidden":t,role:t?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,...i}},n&&!t&&p.createElement("title",null,n),e)};import o from"react";var C=(e)=>{return o.createElement(s,{...e,ariaLabel:"shopping-bag-edit-2"},o.createElement("path",{d:"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M10.5 21.5H7.45903C5.63338 21.5 4.23099 19.883 4.48918 18.0757L5.63204 10.0757C5.84317 8.59779 7.10894 7.5 8.60189 7.5H15.3981C16.8911 7.5 18.1568 8.59779 18.368 10.0757L18.7143 12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M13.5 22.5002V20.1668L17.75 15.9168C18.3943 15.2725 19.439 15.2725 20.0833 15.9168C20.7277 16.5612 20.7277 17.6058 20.0833 18.2502L15.8333 22.5002H13.5Z",stroke:"currentColor",strokeLinecap:"square",strokeLinejoin:"round"}))},L=C;export{L as default,C as IconShoppingBagEdit2};
2
2
 
3
- //# debugId=D8D2812C4CE4B1B064756E2164756E21
3
+ //# debugId=8C62BA7E963454DF64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShoppingBagEdit2/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 IconShoppingBagEdit2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-edit-2\"><path d=\"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M10.4986 21.5H7.45759C5.63195 21.5 4.22956 19.883 4.48775 18.0757L5.6306 10.0757C5.84174 8.59779 7.1075 7.5 8.60045 7.5H15.3967C16.8896 7.5 18.1554 8.59779 18.3665 10.0757L18.7129 12.5M13.4986 20.1666V22.4999H15.8319L20.0819 18.2499C20.7262 17.6056 20.7262 16.5609 20.0819 15.9166C19.4376 15.2723 18.3929 15.2723 17.7486 15.9166L13.4986 20.1666Z\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagEdit2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShoppingBagEdit2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-edit-2\"><path d=\"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.5 21.5H7.45903C5.63338 21.5 4.23099 19.883 4.48918 18.0757L5.63204 10.0757C5.84317 8.59779 7.10894 7.5 8.60189 7.5H15.3981C16.8911 7.5 18.1568 8.59779 18.368 10.0757L18.7143 12.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M13.5 22.5002V20.1668L17.75 15.9168C18.3943 15.2725 19.439 15.2725 20.0833 15.9168C20.7277 16.5612 20.7277 17.6058 20.0833 18.2502L15.8333 22.5002H13.5Z\" stroke=\"currentColor\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagEdit2;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAkkB,EAAlkB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,wbAAwb,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5jB",
9
- "debugId": "D8D2812C4CE4B1B064756E2164756E21",
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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAisB,EAAjsB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,2JAA2J,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAG3rB",
9
+ "debugId": "8C62BA7E963454DF64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- var I=Object.create;var{getPrototypeOf:k,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:L}=Object,g=Object.prototype.hasOwnProperty;function d(r){return this[r]}var b,w,f=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?b??=new WeakMap:w??=new WeakMap,s=n.get(r);if(s)return s}e=r!=null?I(k(r)):{};let p=o||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e;for(let i of u(r))if(!g.call(p,i))a(p,i,{get:d.bind(r,i),enumerable:!0});if(t)n.set(r,p);return p},h=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of u(r))if(!g.call(o,t))a(o,t,{get:d.bind(r,t),enumerable:!(e=L(r,t))||e.enumerable})}return c.set(r,o),o},c;var y=(r)=>r;function P(r,o){this[r]=y.bind(null,o)}var B=(r,o)=>{for(var e in o)a(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var V={};B(V,{CentralIconBase:()=>m});module.exports=h(V);var C=f(require("react")),m=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:s,...p})=>{return C.default.createElement("svg",{...p,"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:t,...s}},e&&!n&&C.default.createElement("title",null,e),r)};var S={};B(S,{default:()=>v,IconShoppingBagLike2:()=>x});module.exports=h(S);var l=f(require("react"));var x=(r)=>{return l.default.createElement(m,{...r,ariaLabel:"shopping-bag-like-2"},l.default.createElement("path",{d:"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M18.7129 12.5L18.3665 10.0757C18.1554 8.59779 16.8896 7.5 15.3967 7.5H8.60045C7.1075 7.5 5.84174 8.59779 5.6306 10.0757L4.48775 18.0757C4.22956 19.883 5.63195 21.5 7.4576 21.5H12.4986",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),l.default.createElement("path",{d:"M21.5 17.6089C21.5 20.1212 18 21.5 18 21.5C18 21.5 14.5 20.1212 14.5 17.6089C14.5 15.7261 16.3813 14.6052 18 15.6513C19.6187 14.6052 21.5 15.7261 21.5 17.6089Z",stroke:"currentColor",strokeLinejoin:"round"}))},v=x;
1
+ var L=Object.create;var{getPrototypeOf:x,defineProperty:s,getOwnPropertyNames:m,getOwnPropertyDescriptor:I}=Object,d=Object.prototype.hasOwnProperty;function g(r){return this[r]}var b,w,h=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?b??=new WeakMap:w??=new WeakMap,i=n.get(r);if(i)return i}e=r!=null?L(x(r)):{};let p=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let C of m(r))if(!d.call(p,C))s(p,C,{get:g.bind(r,C),enumerable:!0});if(t)n.set(r,p);return p},k=(r)=>{var o=(c??=new WeakMap).get(r),e;if(o)return o;if(o=s({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of m(r))if(!d.call(o,t))s(o,t,{get:g.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return c.set(r,o),o},c;var y=(r)=>r;function P(r,o){this[r]=y.bind(null,o)}var f=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var V={};f(V,{CentralIconBase:()=>u});module.exports=k(V);var l=h(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:i,...p})=>{return l.default.createElement("svg",{...p,"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:t,...i}},e&&!n&&l.default.createElement("title",null,e),r)};var S={};f(S,{default:()=>v,IconShoppingBagLike2:()=>B});module.exports=k(S);var a=h(require("react"));var B=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"shopping-bag-like-2"},a.default.createElement("path",{d:"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M18.7143 12.5L18.368 10.0757C18.1568 8.59779 16.8911 7.5 15.3981 7.5H8.60189C7.10894 7.5 5.84317 8.59779 5.63204 10.0757L4.48918 18.0757C4.23099 19.883 5.63338 21.5 7.45903 21.5H12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M21.5 17.6112C21.5 19.8473 18.2917 21.5001 18 21.5001C17.7083 21.5001 14.5 19.8473 14.5 17.6112C14.5 16.0556 15.4722 15.2778 16.4444 15.2778C17.4167 15.2778 18 15.8612 18 15.8612C18 15.8612 18.5833 15.2778 19.5556 15.2778C20.5278 15.2778 21.5 16.0556 21.5 17.6112Z",stroke:"currentColor",strokeLinejoin:"round"}))},v=B;
2
2
 
3
- //# debugId=0E2EAA88E0998E7864756E2164756E21
3
+ //# debugId=6B0151F91B23EEFA64756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShoppingBagLike2/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 IconShoppingBagLike2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-2\"><path d=\"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M18.7129 12.5L18.3665 10.0757C18.1554 8.59779 16.8896 7.5 15.3967 7.5H8.60045C7.1075 7.5 5.84174 8.59779 5.6306 10.0757L4.48775 18.0757C4.22956 19.883 5.63195 21.5 7.4576 21.5H12.4986\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.5 17.6089C21.5 20.1212 18 21.5 18 21.5C18 21.5 14.5 20.1212 14.5 17.6089C14.5 15.7261 16.3813 14.6052 18 15.6513C19.6187 14.6052 21.5 15.7261 21.5 17.6089Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagLike2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShoppingBagLike2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-2\"><path d=\"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.7143 12.5L18.368 10.0757C18.1568 8.59779 16.8911 7.5 15.3981 7.5H8.60189C7.10894 7.5 5.84317 8.59779 5.63204 10.0757L4.48918 18.0757C4.23099 19.883 5.63338 21.5 7.45903 21.5H12.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.5 17.6112C21.5 19.8473 18.2917 21.5001 18 21.5001C17.7083 21.5001 14.5 19.8473 14.5 17.6112C14.5 16.0556 15.4722 15.2778 16.4444 15.2778C17.4167 15.2778 18 15.8612 18 15.8612C18 15.8612 18.5833 15.2778 19.5556 15.2778C20.5278 15.2778 21.5 16.0556 21.5 17.6112Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagLike2;\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,gFCjCY,IAAlB,sBAGO,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAAwnB,EAAxnB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,sRAAsR,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kKAAkK,OAAO,eAAe,eAAe,QAAO,CAAI,GAGlnB",
9
- "debugId": "0E2EAA88E0998E7864756E2164756E21",
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,gFCjCY,IAAlB,sBAGO,IAAM,EAAuD,CAAC,IAAU,CAC7E,OAAO,wBAA0xB,EAA1xB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2QAA2Q,OAAO,eAAe,eAAe,QAAO,CAAI,GAGpxB",
9
+ "debugId": "6B0151F91B23EEFA64756E2164756E21",
10
10
  "names": []
11
11
  }
@@ -1,3 +1,3 @@
1
- import p from"react";var a=({children:o,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:l,...i})=>{return p.createElement("svg",{...i,"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:s,...l}},n&&!e&&p.createElement("title",null,n),o)};import t from"react";var C=(o)=>{return t.createElement(a,{...o,ariaLabel:"shopping-bag-like-2"},t.createElement("path",{d:"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M18.7129 12.5L18.3665 10.0757C18.1554 8.59779 16.8896 7.5 15.3967 7.5H8.60045C7.1075 7.5 5.84174 8.59779 5.6306 10.0757L4.48775 18.0757C4.22956 19.883 5.63195 21.5 7.4576 21.5H12.4986",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),t.createElement("path",{d:"M21.5 17.6089C21.5 20.1212 18 21.5 18 21.5C18 21.5 14.5 20.1212 14.5 17.6089C14.5 15.7261 16.3813 14.6052 18 15.6513C19.6187 14.6052 21.5 15.7261 21.5 17.6089Z",stroke:"currentColor",strokeLinejoin:"round"}))},f=C;export{f as default,C as IconShoppingBagLike2};
1
+ import p from"react";var s=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:i,...C})=>{return p.createElement("svg",{...C,"aria-hidden":t,role:t?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,...i}},n&&!t&&p.createElement("title",null,n),e)};import o from"react";var l=(e)=>{return o.createElement(s,{...e,ariaLabel:"shopping-bag-like-2"},o.createElement("path",{d:"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M18.7143 12.5L18.368 10.0757C18.1568 8.59779 16.8911 7.5 15.3981 7.5H8.60189C7.10894 7.5 5.84317 8.59779 5.63204 10.0757L4.48918 18.0757C4.23099 19.883 5.63338 21.5 7.45903 21.5H12.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M21.5 17.6112C21.5 19.8473 18.2917 21.5001 18 21.5001C17.7083 21.5001 14.5 19.8473 14.5 17.6112C14.5 16.0556 15.4722 15.2778 16.4444 15.2778C17.4167 15.2778 18 15.8612 18 15.8612C18 15.8612 18.5833 15.2778 19.5556 15.2778C20.5278 15.2778 21.5 16.0556 21.5 17.6112Z",stroke:"currentColor",strokeLinejoin:"round"}))},h=l;export{h as default,l as IconShoppingBagLike2};
2
2
 
3
- //# debugId=4B89192D766FEC8864756E2164756E21
3
+ //# debugId=42EFF96DFFF1D4E464756E2164756E21
@@ -3,9 +3,9 @@
3
3
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShoppingBagLike2/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 IconShoppingBagLike2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-2\"><path d=\"M15.4986 7.5V6C15.4986 4.067 13.9316 2.5 11.9986 2.5C10.0656 2.5 8.49857 4.067 8.49857 6V7.5M18.7129 12.5L18.3665 10.0757C18.1554 8.59779 16.8896 7.5 15.3967 7.5H8.60045C7.1075 7.5 5.84174 8.59779 5.6306 10.0757L4.48775 18.0757C4.22956 19.883 5.63195 21.5 7.4576 21.5H12.4986\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.5 17.6089C21.5 20.1212 18 21.5 18 21.5C18 21.5 14.5 20.1212 14.5 17.6089C14.5 15.7261 16.3813 14.6052 18 15.6513C19.6187 14.6052 21.5 15.7261 21.5 17.6089Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagLike2;\n"
6
+ "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShoppingBagLike2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-2\"><path d=\"M15.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M18.7143 12.5L18.368 10.0757C18.1568 8.59779 16.8911 7.5 15.3981 7.5H8.60189C7.10894 7.5 5.84317 8.59779 5.63204 10.0757L4.48918 18.0757C4.23099 19.883 5.63338 21.5 7.45903 21.5H12.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.5 17.6112C21.5 19.8473 18.2917 21.5001 18 21.5001C17.7083 21.5001 14.5 19.8473 14.5 17.6112C14.5 16.0556 15.4722 15.2778 16.4444 15.2778C17.4167 15.2778 18 15.8612 18 15.8612C18 15.8612 18.5833 15.2778 19.5556 15.2778C20.5278 15.2778 21.5 16.0556 21.5 17.6112Z\" stroke=\"currentColor\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagLike2;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAwnB,EAAxnB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,sRAAsR,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,kKAAkK,OAAO,eAAe,eAAe,QAAO,CAAI,GAGlnB",
9
- "debugId": "4B89192D766FEC8864756E2164756E21",
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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAA0xB,EAA1xB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,yLAAyL,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,2QAA2Q,OAAO,eAAe,eAAe,QAAO,CAAI,GAGpxB",
9
+ "debugId": "42EFF96DFFF1D4E464756E2164756E21",
10
10
  "names": []
11
11
  }
package/README.md CHANGED
@@ -446,6 +446,7 @@ Below is a complete list of available icons:
446
446
  - IconQm3
447
447
  - Icon3dBoxTop
448
448
  - Icon3dBoxBottom
449
+ - IconReframe
449
450
 
450
451
  ### Building
451
452
 
@@ -815,6 +816,7 @@ Below is a complete list of available icons:
815
816
  - IconWrite3
816
817
  - IconColorPalette2
817
818
  - IconEyedropper
819
+ - IconExtendImage
818
820
 
819
821
  ### Emoji
820
822