@central-icons-react/round-outlined-radius-1-stroke-2 1.1.258 → 1.1.259
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.
- package/IconPageCloud/index.js +2 -2
- package/IconPageCloud/index.js.map +3 -3
- package/IconPageCloud/index.mjs +2 -2
- package/IconPageCloud/index.mjs.map +3 -3
- package/IconShoppingBagEdit2/index.js +2 -2
- package/IconShoppingBagEdit2/index.js.map +3 -3
- package/IconShoppingBagEdit2/index.mjs +2 -2
- package/IconShoppingBagEdit2/index.mjs.map +3 -3
- package/IconShoppingBagLike1/index.js +2 -2
- package/IconShoppingBagLike1/index.js.map +3 -3
- package/IconShoppingBagLike1/index.mjs +2 -2
- package/IconShoppingBagLike1/index.mjs.map +3 -3
- package/IconShoppingBagLike2/index.js +2 -2
- package/IconShoppingBagLike2/index.js.map +3 -3
- package/IconShoppingBagLike2/index.mjs +2 -2
- package/IconShoppingBagLike2/index.mjs.map +3 -3
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +1 -1
package/IconPageCloud/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var h=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,g=Object.prototype.hasOwnProperty;function f(e){return this[e]}var y,V,d=(e,r,t)=>{var o=e!=null&&typeof e==="object";if(o){var n=r?y??=new WeakMap:V??=new WeakMap,l=n.get(e);if(l)return l}t=e!=null?h(P(e)):{};let p=r||!e||!e.__esModule?a(t,"default",{value:e,enumerable:!0}):t;for(let s of u(e))if(!g.call(p,s))a(p,s,{get:f.bind(e,s),enumerable:!0});if(o)n.set(e,p);return p},x=(e)=>{var r=(i??=new WeakMap).get(e),t;if(r)return r;if(r=a({},"__esModule",{value:!0}),e&&typeof e==="object"||typeof e==="function"){for(var o of u(e))if(!g.call(r,o))a(r,o,{get:f.bind(e,o),enumerable:!(t=w(e,o))||t.enumerable})}return i.set(e,r),r},i;var b=(e)=>e;function v(e,r){this[e]=b.bind(null,r)}var B=(e,r)=>{for(var t in r)a(e,t,{get:r[t],enumerable:!0,configurable:!0,set:v.bind(r,t)})};var G={};B(G,{CentralIconBase:()=>m});module.exports=x(G);var C=d(require("react")),m=({children:e,size:r=24,ariaLabel:t,color:o,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:o,...l}},t&&!n&&C.default.createElement("title",null,t),e)};var S={};B(S,{default:()=>k,IconPageCloud:()=>I});module.exports=x(S);var c=d(require("react"));var I=(e)=>{return c.default.createElement(m,{...e,ariaLabel:"page-cloud"},c.default.createElement("path",{d:"M9 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10.5M12.5 17.75C12.5 19.5449 13.9551 21 15.75 21H18.5C19.8807 21 21 19.8807 21 18.5C21 17.1193 19.8807 16 18.5 16L18.4888 16C17.9116 15.0983 16.9015 14.5 15.75 14.5C13.9551 14.5 12.5 15.9551 12.5 17.75Z",stroke:"currentColor",strokeWidth:"2"}))},k=I;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=E74435DB91E137D564756E2164756E21
|
|
@@ -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=\"M9 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10.
|
|
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=\"M9 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10.5M12.5 17.75C12.5 19.5449 13.9551 21 15.75 21H18.5C19.8807 21 21 19.8807 21 18.5C21 17.1193 19.8807 16 18.5 16L18.4888 16C17.9116 15.0983 16.9015 14.5 15.75 14.5C13.9551 14.5 12.5 15.9551 12.5 17.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,
|
|
9
|
-
"debugId": "
|
|
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,sSAAsS,OAAO,eAAe,YAAY,IAAG,CAAI,GAGpY",
|
|
9
|
+
"debugId": "E74435DB91E137D564756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconPageCloud/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import n from"react";var p=({children:r,size:e=24,ariaLabel:
|
|
1
|
+
import n from"react";var p=({children:r,size:e=24,ariaLabel:o,color:l,ariaHidden:t=!0,style:s,...C})=>{return n.createElement("svg",{...C,"aria-hidden":t,role:t?void 0:"img",width:typeof e==="number"?`${e}px`:e,height:typeof e==="number"?`${e}px`:e,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:l,...s}},o&&!t&&n.createElement("title",null,o),r)};import a from"react";var m=(r)=>{return a.createElement(p,{...r,ariaLabel:"page-cloud"},a.createElement("path",{d:"M9 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10.5M12.5 17.75C12.5 19.5449 13.9551 21 15.75 21H18.5C19.8807 21 21 19.8807 21 18.5C21 17.1193 19.8807 16 18.5 16L18.4888 16C17.9116 15.0983 16.9015 14.5 15.75 14.5C13.9551 14.5 12.5 15.9551 12.5 17.75Z",stroke:"currentColor",strokeWidth:"2"}))},d=m;export{d as default,m as IconPageCloud};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=2483E8C391BA805864756E2164756E21
|
|
@@ -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=\"M9 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10.
|
|
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=\"M9 21H6C5.44771 21 5 20.5523 5 20V4C5 3.44772 5.44772 3 6 3H18C18.5523 3 19 3.44772 19 4V10.5M12.5 17.75C12.5 19.5449 13.9551 21 15.75 21H18.5C19.8807 21 21 19.8807 21 18.5C21 17.1193 19.8807 16 18.5 16L18.4888 16C17.9116 15.0983 16.9015 14.5 15.75 14.5C13.9551 14.5 12.5 15.9551 12.5 17.75Z\" stroke=\"currentColor\" strokeWidth=\"2\"/></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,
|
|
9
|
-
"debugId": "
|
|
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,sSAAsS,OAAO,eAAe,YAAY,IAAG,CAAI,GAGpY",
|
|
9
|
+
"debugId": "2483E8C391BA805864756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:x,defineProperty:s,getOwnPropertyNames:c,getOwnPropertyDescriptor:I}=Object,m=Object.prototype.hasOwnProperty;function h(r){return this[r]}var V,b,g=(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 c(r))if(!m.call(p,l))s(p,l,{get:h.bind(r,l),enumerable:!0});if(t)n.set(r,p);return p},k=(r)=>{var o=(u??=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 c(r))if(!m.call(o,t))s(o,t,{get:h.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return u.set(r,o),o},u;var w=(r)=>r;function y(r,o){this[r]=w.bind(null,o)}var L=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var P={};L(P,{CentralIconBase:()=>d});module.exports=k(P);var C=g(require("react")),d=({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={};L(S,{default:()=>v,IconShoppingBagEdit2:()=>f});module.exports=k(S);var a=g(require("react"));var f=(r)=>{return a.default.createElement(d,{...r,ariaLabel:"shopping-bag-edit-2"},a.default.createElement("path",{d:"M15 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),a.default.createElement("path",{d:"M14 22.0002V19.6668L17.5 16.1668C18.1443 15.5225 19.189 15.5225 19.8333 16.1668C20.4777 16.8112 20.4777 17.8558 19.8333 18.5002L16.3333 22.0002H14Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M10 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},v=f;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=DA49465EB9C26C3C64756E2164756E21
|
|
@@ -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=\"
|
|
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 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M14 22.0002V19.6668L17.5 16.1668C18.1443 15.5225 19.189 15.5225 19.8333 16.1668C20.4777 16.8112 20.4777 17.8558 19.8333 18.5002L16.3333 22.0002H14Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M10 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" 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,
|
|
9
|
-
"debugId": "
|
|
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,wBAA8rB,EAA9rB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,8DAA8D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,sJAAsJ,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,8KAA8K,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGxrB",
|
|
9
|
+
"debugId": "DA49465EB9C26C3C64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
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 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement("path",{d:"M14 22.0002V19.6668L17.5 16.1668C18.1443 15.5225 19.189 15.5225 19.8333 16.1668C20.4777 16.8112 20.4777 17.8558 19.8333 18.5002L16.3333 22.0002H14Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"square",strokeLinejoin:"round"}),o.createElement("path",{d:"M10 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},g=C;export{g as default,C as IconShoppingBagEdit2};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=B1312FCB56572E0264756E2164756E21
|
|
@@ -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=\"
|
|
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 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M14 22.0002V19.6668L17.5 16.1668C18.1443 15.5225 19.189 15.5225 19.8333 16.1668C20.4777 16.8112 20.4777 17.8558 19.8333 18.5002L16.3333 22.0002H14Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"square\" strokeLinejoin=\"round\"/><path d=\"M10 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" 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,
|
|
9
|
-
"debugId": "
|
|
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,gBAA8rB,EAA9rB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,8DAA8D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,sJAAsJ,OAAO,eAAe,YAAY,IAAI,cAAc,SAAS,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,8KAA8K,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGxrB",
|
|
9
|
+
"debugId": "B1312FCB56572E0264756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:I,defineProperty:s,getOwnPropertyNames:d,getOwnPropertyDescriptor:L}=Object,m=Object.prototype.hasOwnProperty;function h(r){return this[r]}var b,w,g=(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?x(I(r)):{};let p=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let C of d(r))if(!m.call(p,C))s(p,C,{get:h.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 d(r))if(!m.call(o,t))s(o,t,{get:h.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 f=(r,o)=>{for(var e in o)s(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var S={};f(S,{CentralIconBase:()=>u});module.exports=k(S);var l=g(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 v={};f(v,{default:()=>G,IconShoppingBagLike1:()=>B});module.exports=k(v);var a=g(require("react"));var B=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"shopping-bag-like-1"},a.default.createElement("path",{d:"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z",stroke:"currentColor",strokeWidth:"2"}),a.default.createElement("path",{d:"M15 8C15 9.65685 13.6569 11 12 11C10.3431 11 9 9.65685 9 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M10.9668 20H5.03129C4.45447 20 3.99726 19.5133 4.03324 18.9376L4.90824 4.93762C4.94118 4.41059 5.37823 4 5.90629 4H18.0274C18.5555 4 18.9925 4.41059 19.0254 4.93762L19.4179 11.2171",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},G=B;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=F23DA07B260EF86964756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconShoppingBagLike1/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 IconShoppingBagLike1: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-1\"><path d=\"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShoppingBagLike1: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-1\"><path d=\"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M15 8C15 9.65685 13.6569 11 12 11C10.3431 11 9 9.65685 9 8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.9668 20H5.03129C4.45447 20 3.99726 19.5133 4.03324 18.9376L4.90824 4.93762C4.94118 4.41059 5.37823 4 5.90629 4H18.0274C18.5555 4 18.9925 4.41059 19.0254 4.93762L19.4179 11.2171\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagLike1;\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,
|
|
9
|
-
"debugId": "
|
|
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,wBAAwzB,EAAxzB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,+RAA+R,OAAO,eAAe,YAAY,IAAG,EAAE,wBAAC,OAAD,CAAM,EAAE,6DAA6D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uLAAuL,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlzB",
|
|
9
|
+
"debugId": "F23DA07B260EF86964756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
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-1"},o.createElement("path",{d:"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z",stroke:"currentColor",strokeWidth:"2"}),o.createElement("path",{d:"M15 8C15 9.65685 13.6569 11 12 11C10.3431 11 9 9.65685 9 8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M10.9668 20H5.03129C4.45447 20 3.99726 19.5133 4.03324 18.9376L4.90824 4.93762C4.94118 4.41059 5.37823 4 5.90629 4H18.0274C18.5555 4 18.9925 4.41059 19.0254 4.93762L19.4179 11.2171",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},g=l;export{g as default,l as IconShoppingBagLike1};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=83CC4557C46249A264756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconShoppingBagLike1/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 IconShoppingBagLike1: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-1\"><path d=\"
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconShoppingBagLike1: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"shopping-bag-like-1\"><path d=\"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z\" stroke=\"currentColor\" strokeWidth=\"2\"/><path d=\"M15 8C15 9.65685 13.6569 11 12 11C10.3431 11 9 9.65685 9 8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M10.9668 20H5.03129C4.45447 20 3.99726 19.5133 4.03324 18.9376L4.90824 4.93762C4.94118 4.41059 5.37823 4 5.90629 4H18.0274C18.5555 4 18.9925 4.41059 19.0254 4.93762L19.4179 11.2171\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconShoppingBagLike1;\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,
|
|
9
|
-
"debugId": "
|
|
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,gBAAwzB,EAAxzB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,+RAA+R,OAAO,eAAe,YAAY,IAAG,EAAE,gBAAC,OAAD,CAAM,EAAE,6DAA6D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uLAAuL,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGlzB",
|
|
9
|
+
"debugId": "83CC4557C46249A264756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:I,defineProperty:s,getOwnPropertyNames:d,getOwnPropertyDescriptor:L}=Object,m=Object.prototype.hasOwnProperty;function h(r){return this[r]}var b,w,g=(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?x(I(r)):{};let p=o||!r||!r.__esModule?s(e,"default",{value:r,enumerable:!0}):e;for(let C of d(r))if(!m.call(p,C))s(p,C,{get:h.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 d(r))if(!m.call(o,t))s(o,t,{get:h.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 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=g(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=g(require("react"));var B=(r)=>{return a.default.createElement(u,{...r,ariaLabel:"shopping-bag-like-2"},a.default.createElement("path",{d:"M15 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),a.default.createElement("path",{d:"M11.5 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},v=B;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=1EBD0AF6FE07787B64756E2164756E21
|
|
@@ -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=\"
|
|
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 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M11.5 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,
|
|
9
|
-
"debugId": "
|
|
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,wBAAkzB,EAAlzB,IAAqB,EAAO,UAAU,uBAAsB,wBAAC,OAAD,CAAM,EAAE,8DAA8D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gLAAgL,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+RAA+R,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG5yB",
|
|
9
|
+
"debugId": "1EBD0AF6FE07787B64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import
|
|
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 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),o.createElement("path",{d:"M11.5 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z",stroke:"currentColor",strokeWidth:"2",strokeLinejoin:"round"}))},g=l;export{g as default,l as IconShoppingBagLike2};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=72B840D9DFCA5DFC64756E2164756E21
|
|
@@ -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=\"
|
|
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 8V6C15 4.34315 13.6569 3 12 3C10.3431 3 9 4.34315 9 6V8\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M11.5 21H5.66561C5.05273 21 4.58405 20.4537 4.67724 19.8479L6.36955 8.84794C6.4446 8.36011 6.86435 8 7.35792 8H16.6421C17.1357 8 17.5554 8.36011 17.6305 8.84794L18.0385 11.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M21.0026 17.4175C21.0026 19.4948 18.0223 21.0301 17.7513 21.0301C17.4804 21.0301 14.5 19.4948 14.5 17.4175C14.5 15.9725 15.4031 15.25 16.3063 15.25C17.2094 15.25 17.7513 15.7919 17.7513 15.7919C17.7513 15.7919 18.2932 15.25 19.1963 15.25C20.0995 15.25 21.0026 15.9725 21.0026 17.4175Z\" stroke=\"currentColor\" strokeWidth=\"2\" 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,
|
|
9
|
-
"debugId": "
|
|
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,gBAAkzB,EAAlzB,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,EAAE,8DAA8D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gLAAgL,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,+RAA+R,OAAO,eAAe,YAAY,IAAI,eAAe,QAAO,CAAI,GAG5yB",
|
|
9
|
+
"debugId": "72B840D9DFCA5DFC64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|