@central-icons-react/round-outlined-radius-0-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 g=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var P={};g(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={};g(b,{default:()=>v,IconExtendImage:()=>x});module.exports=m(b);var n=h(require("react"));var x=(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:"M6.5 17.5L3.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),n.default.createElement("path",{d:"M20.5 3.5L17.5 6.5",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",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},v=x;
2
+
3
+ //# debugId=F10723444D5D5CE164756E2164756E21
@@ -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=\"M6.5 17.5L3.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5L17.5 6.5\" 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\" 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,wBAAo7B,EAAp7B,IAAqB,EAAO,UAAU,gBAAe,wBAAC,OAAD,CAAM,EAAE,mBAAmB,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,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,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG96B",
9
+ "debugId": "F10723444D5D5CE164756E2164756E21",
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:"M6.5 17.5L3.5 20.5",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),r.createElement("path",{d:"M20.5 3.5L17.5 6.5",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",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},h=a;export{h as default,a as IconExtendImage};
2
+
3
+ //# debugId=A1F817D85ED43E2C64756E2164756E21
@@ -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=\"M6.5 17.5L3.5 20.5\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20.5 3.5L17.5 6.5\" 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\" 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,gBAAo7B,EAAp7B,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,mBAAmB,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,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,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG96B",
9
+ "debugId": "A1F817D85ED43E2C64756E2164756E21",
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.5H4.5V2.5H19.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:k}=Object,d=Object.prototype.hasOwnProperty;function g(r){return this[r]}var w,y,f=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?w??=new WeakMap:y??=new WeakMap,s=n.get(r);if(s)return s}e=r!=null?h(P(r)):{};let p=o||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e;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 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 m(r))if(!d.call(o,t))a(o,t,{get:g.bind(r,t),enumerable:!(e=k(r,t))||e.enumerable})}return c.set(r,o),o},c;var V=(r)=>r;function b(r,o){this[r]=V.bind(null,o)}var B=(r,o)=>{for(var e in o)a(r,e,{get:o[e],enumerable:!0,configurable:!0,set:b.bind(o,e)})};var L={};B(L,{CentralIconBase:()=>u});module.exports=x(L);var i=f(require("react")),u=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:s,...p})=>{return i.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&&i.default.createElement("title",null,e),r)};var v={};B(v,{default:()=>G,IconPageCloud:()=>I});module.exports=x(v);var l=f(require("react"));var I=(r)=>{return l.default.createElement(u,{...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.5H4.5V2.5H19.5V13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},G=I;
2
2
 
3
- //# debugId=157FF225AEB0D44864756E2164756E21
3
+ //# debugId=96D140EC09FB0A8C64756E2164756E21
@@ -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.5H4.5V2.5H19.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.5H4.5V2.5H19.5V13\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"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,wBAA0Y,EAA1Y,IAAqB,EAAO,UAAU,cAAa,wBAAC,OAAD,CAAM,EAAE,yQAAyQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpY",
9
- "debugId": "157FF225AEB0D44864756E2164756E21",
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,wBAAud,EAAvd,IAAqB,EAAO,UAAU,cAAa,wBAAC,OAAD,CAAM,EAAE,6OAA6O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjd",
9
+ "debugId": "96D140EC09FB0A8C64756E2164756E21",
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.5H4.5V2.5H19.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:o,size:r=24,ariaLabel:n,color:s,ariaHidden:e=!0,style:l,...C})=>{return p.createElement("svg",{...C,"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 i=(o)=>{return t.createElement(a,{...o,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.5H4.5V2.5H19.5V13",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=i;export{f as default,i as IconPageCloud};
2
2
 
3
- //# debugId=07C2A3D7CA67AA0764756E2164756E21
3
+ //# debugId=6B5C859BFC91133E64756E2164756E21
@@ -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.5H4.5V2.5H19.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.5H4.5V2.5H19.5V13\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"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,gBAA0Y,EAA1Y,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,yQAAyQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGpY",
9
- "debugId": "07C2A3D7CA67AA0764756E2164756E21",
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,gBAAud,EAAvd,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,6OAA6O,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,6BAA6B,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGjd",
9
+ "debugId": "6B5C859BFC91133E64756E2164756E21",
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:f,getOwnPropertyDescriptor:V}=Object,C=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 f(r))if(!C.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 f(r))if(!C.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.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.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=AF3EA528D1723E1664756E2164756E21
@@ -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.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.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,wBAAgX,EAAhX,IAAqB,EAAO,UAAU,sBAAqB,wBAAC,OAAD,CAAM,EAAE,6GAA6G,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1W",
9
+ "debugId": "AF3EA528D1723E1664756E2164756E21",
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.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.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=7E05E9BB4FA130B964756E2164756E21
@@ -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.09739L12 1.35498L16.75 4.09739M21.5 12.3246V17.8095L16.75 20.5519M7.25 20.5519L2.5 17.8095V12.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,gBAAgX,EAAhX,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,EAAE,6GAA6G,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,8CAA8C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG1W",
9
+ "debugId": "7E05E9BB4FA130B964756E2164756E21",
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:()=>m});module.exports=B(S);var i=f(require("react")),m=({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 C=f(require("react"));var x=(e)=>{return C.default.createElement(m,{...e,ariaLabel:"shopping-bag-edit-2"},C.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.5M10.5 21.5H4L6 7.5H18L18.7143 12.5M13.5 20.1666V22.4999H15.8333L20.0833 18.2499C20.7277 17.6056 20.7277 16.5609 20.0833 15.9166C19.439 15.2723 18.3943 15.2723 17.75 15.9166L13.5 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:()=>C});module.exports=h(P);var u=L(require("react")),C=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:i,...p})=>{return u.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&&u.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(C,{...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.5H4L6 7.5H18L18.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=5345EE1BD5E7F04564756E2164756E21
3
+ //# debugId=3DC9FC86B2E6296D64756E2164756E21
@@ -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.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5M10.5 21.5H4L6 7.5H18L18.7143 12.5M13.5 20.1666V22.4999H15.8333L20.0833 18.2499C20.7277 17.6056 20.7277 16.5609 20.0833 15.9166C19.439 15.2723 18.3943 15.2723 17.75 15.9166L13.5 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.5H4L6 7.5H18L18.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,wBAA8Y,EAA9Y,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,oQAAoQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGxY",
9
- "debugId": "5345EE1BD5E7F04564756E2164756E21",
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,wBAA6iB,EAA7iB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2JAA2J,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGviB",
9
+ "debugId": "3DC9FC86B2E6296D64756E2164756E21",
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 m=(r)=>{return a.createElement(p,{...r,ariaLabel:"shopping-bag-edit-2"},a.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.5M10.5 21.5H4L6 7.5H18L18.7143 12.5M13.5 20.1666V22.4999H15.8333L20.0833 18.2499C20.7277 17.6056 20.7277 16.5609 20.0833 15.9166C19.439 15.2723 18.3943 15.2723 17.75 15.9166L13.5 20.1666Z",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))},f=m;export{f as default,m 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 u=(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.5H4L6 7.5H18L18.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=u;export{L as default,u as IconShoppingBagEdit2};
2
2
 
3
- //# debugId=9C917F18CA8ADE1D64756E2164756E21
3
+ //# debugId=3AC48638F99A3F5164756E2164756E21
@@ -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.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5M10.5 21.5H4L6 7.5H18L18.7143 12.5M13.5 20.1666V22.4999H15.8333L20.0833 18.2499C20.7277 17.6056 20.7277 16.5609 20.0833 15.9166C19.439 15.2723 18.3943 15.2723 17.75 15.9166L13.5 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.5H4L6 7.5H18L18.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,gBAA8Y,EAA9Y,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,oQAAoQ,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGxY",
9
- "debugId": "9C917F18CA8ADE1D64756E2164756E21",
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,gBAA6iB,EAA7iB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,2JAA2J,OAAO,eAAe,cAAc,SAAS,eAAe,QAAO,CAAI,GAGviB",
9
+ "debugId": "3AC48638F99A3F5164756E2164756E21",
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.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5M18.7143 12.5L18 7.5H6L4 21.5H12.5",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 l of m(r))if(!d.call(p,l))s(p,l,{get:g.bind(r,l),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 C=h(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,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 7.5H6L4 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=C95757D8BD05215464756E2164756E21
3
+ //# debugId=05DA758BB47E1A1664756E2164756E21
@@ -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.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5M18.7143 12.5L18 7.5H6L4 21.5H12.5\" 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 7.5H6L4 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,wBAA8c,EAA9c,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,4GAA4G,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,kKAAkK,OAAO,eAAe,eAAe,QAAO,CAAI,GAGxc",
9
- "debugId": "C95757D8BD05215464756E2164756E21",
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,wBAAsoB,EAAtoB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,2QAA2Q,OAAO,eAAe,eAAe,QAAO,CAAI,GAGhoB",
9
+ "debugId": "05DA758BB47E1A1664756E2164756E21",
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.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5M18.7143 12.5L18 7.5H6L4 21.5H12.5",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,...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-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 7.5H6L4 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=C;export{h as default,C as IconShoppingBagLike2};
2
2
 
3
- //# debugId=C5B5A57E9952AEAF64756E2164756E21
3
+ //# debugId=271241459492CCE664756E2164756E21
@@ -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.5 7.5V6C15.5 4.067 13.933 2.5 12 2.5C10.067 2.5 8.5 4.067 8.5 6V7.5M18.7143 12.5L18 7.5H6L4 21.5H12.5\" 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 7.5H6L4 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,gBAA8c,EAA9c,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,4GAA4G,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,kKAAkK,OAAO,eAAe,eAAe,QAAO,CAAI,GAGxc",
9
- "debugId": "C5B5A57E9952AEAF64756E2164756E21",
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,gBAAsoB,EAAtoB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,0EAA0E,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,2QAA2Q,OAAO,eAAe,eAAe,QAAO,CAAI,GAGhoB",
9
+ "debugId": "271241459492CCE664756E2164756E21",
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