@central-icons-react/round-outlined-radius-3-stroke-2 1.1.266 → 1.1.268
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/IconAlbums2/index.d.ts +4 -0
- package/IconAlbums2/index.js +3 -0
- package/IconAlbums2/index.js.map +11 -0
- package/IconAlbums2/index.mjs +3 -0
- package/IconAlbums2/index.mjs.map +11 -0
- package/IconCreditCardNfc/index.d.ts +4 -0
- package/IconCreditCardNfc/index.js +3 -0
- package/IconCreditCardNfc/index.js.map +11 -0
- package/IconCreditCardNfc/index.mjs +3 -0
- package/IconCreditCardNfc/index.mjs.map +11 -0
- package/IconDevices2/index.js +2 -2
- package/IconDevices2/index.js.map +3 -3
- package/IconDevices2/index.mjs +2 -2
- package/IconDevices2/index.mjs.map +3 -3
- package/IconHomePlus/index.d.ts +4 -0
- package/IconHomePlus/index.js +3 -0
- package/IconHomePlus/index.js.map +11 -0
- package/IconHomePlus/index.mjs +3 -0
- package/IconHomePlus/index.mjs.map +11 -0
- 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/README.md +3 -0
- package/icons/index.d.ts +1 -1
- 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 +4 -4
- package/index.d.ts +3 -0
- package/index.js +9 -0
- package/index.mjs +3 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react/SKILL.md +5 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:I}=Object,C=Object.prototype.hasOwnProperty;function k(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?x(B(r)):{};let s=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let l of m(r))if(!C.call(s,l))p(s,l,{get:k.bind(r,l),enumerable:!0});if(t)n.set(r,s);return s},f=(r)=>{var o=(d??=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 m(r))if(!C.call(o,t))p(o,t,{get:k.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return d.set(r,o),o},d;var y=(r)=>r;function P(r,o){this[r]=y.bind(null,o)}var L=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:P.bind(o,e)})};var v={};L(v,{CentralIconBase:()=>c});module.exports=f(v);var u=h(require("react")),c=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:i,...s})=>{return u.default.createElement("svg",{...s,"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 G={};L(G,{default:()=>S,IconAlbums2:()=>g});module.exports=f(G);var a=h(require("react"));var g=(r)=>{return a.default.createElement(c,{...r,ariaLabel:"albums-2, cover"},a.default.createElement("path",{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M6.95547 12H17.0484C19.1079 12 20.5549 14.0276 19.8854 15.9752L19.1979 17.9752C18.7815 19.1866 17.6419 20 16.3609 20H7.64297C6.362 20 5.22234 19.1866 4.80591 17.9752L4.11841 15.9752C3.44892 14.0276 4.89599 12 6.95547 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},S=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=0F1D72D70E93F53364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/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 IconAlbums2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"albums-2, cover\"><path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.95547 12H17.0484C19.1079 12 20.5549 14.0276 19.8854 15.9752L19.1979 17.9752C18.7815 19.1866 17.6419 20 16.3609 20H7.64297C6.362 20 5.22234 19.1866 4.80591 17.9752L4.11841 15.9752C3.44892 14.0276 4.89599 12 6.95547 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\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,wBAAikB,EAAjkB,IAAqB,EAAO,UAAU,mBAAkB,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,+NAA+N,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3jB",
|
|
9
|
+
"debugId": "0F1D72D70E93F53364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:i,...l})=>{return s.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&&s.createElement("title",null,n),e)};import o from"react";var u=(e)=>{return o.createElement(p,{...e,ariaLabel:"albums-2, cover"},o.createElement("path",{d:"M18 4H6",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M19 8H5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M6.95547 12H17.0484C19.1079 12 20.5549 14.0276 19.8854 15.9752L19.1979 17.9752C18.7815 19.1866 17.6419 20 16.3609 20H7.64297C6.362 20 5.22234 19.1866 4.80591 17.9752L4.11841 15.9752C3.44892 14.0276 4.89599 12 6.95547 12Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},h=u;export{h as default,u as IconAlbums2};
|
|
2
|
+
|
|
3
|
+
//# debugId=B84003AA2D401F5364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconAlbums2/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 IconAlbums2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"albums-2, cover\"><path d=\"M18 4H6\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M19 8H5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M6.95547 12H17.0484C19.1079 12 20.5549 14.0276 19.8854 15.9752L19.1979 17.9752C18.7815 19.1866 17.6419 20 16.3609 20H7.64297C6.362 20 5.22234 19.1866 4.80591 17.9752L4.11841 15.9752C3.44892 14.0276 4.89599 12 6.95547 12Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconAlbums2;\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,gBAAikB,EAAjkB,IAAqB,EAAO,UAAU,mBAAkB,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,UAAU,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,+NAA+N,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG3jB",
|
|
9
|
+
"debugId": "B84003AA2D401F5364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var B=Object.create;var{getPrototypeOf:I,defineProperty:a,getOwnPropertyNames:m,getOwnPropertyDescriptor:y}=Object,u=Object.prototype.hasOwnProperty;function f(r){return this[r]}var w,P,h=(r,t,e)=>{var o=r!=null&&typeof r==="object";if(o){var n=t?w??=new WeakMap:P??=new WeakMap,i=n.get(r);if(i)return i}e=r!=null?B(I(r)):{};let p=t||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e;for(let l of m(r))if(!u.call(p,l))a(p,l,{get:f.bind(r,l),enumerable:!0});if(o)n.set(r,p);return p},k=(r)=>{var t=(C??=new WeakMap).get(r),e;if(t)return t;if(t=a({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var o of m(r))if(!u.call(t,o))a(t,o,{get:f.bind(r,o),enumerable:!(e=y(r,o))||e.enumerable})}return C.set(r,t),t},C;var V=(r)=>r;function b(r,t){this[r]=V.bind(null,t)}var g=(r,t)=>{for(var e in t)a(r,e,{get:t[e],enumerable:!0,configurable:!0,set:b.bind(t,e)})};var L={};g(L,{CentralIconBase:()=>d});module.exports=k(L);var c=h(require("react")),d=({children:r,size:t=24,ariaLabel:e,color:o,ariaHidden:n=!0,style:i,...p})=>{return c.default.createElement("svg",{...p,"aria-hidden":n,role:n?void 0:"img",width:typeof t==="number"?`${t}px`:t,height:typeof t==="number"?`${t}px`:t,viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg",style:{color:o,...i}},e&&!n&&c.default.createElement("title",null,e),r)};var v={};g(v,{default:()=>G,IconCreditCardNfc:()=>x});module.exports=k(v);var s=h(require("react"));var x=(r)=>{return s.default.createElement(d,{...r,ariaLabel:"credit-card-nfc, card, payment"},s.default.createElement("path",{d:"M19.707 19C19.959 18.4233 20.4223 17.96 20.999 17.708",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),s.default.createElement("path",{d:"M20.9991 14.083C18.4866 14.5045 16.5036 16.4875 16.082 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),s.default.createElement("path",{d:"M12 19H6C4.34315 19 3 17.6569 3 16V8C3 6.34315 4.34315 5 6 5H18C19.6569 5 21 6.34315 21 8V10H3.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},G=x;
|
|
2
|
+
|
|
3
|
+
//# debugId=0ED54A17D402FFC164756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconCreditCardNfc/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 IconCreditCardNfc: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"credit-card-nfc, card, payment\"><path d=\"M19.707 19C19.959 18.4233 20.4223 17.96 20.999 17.708\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M20.9991 14.083C18.4866 14.5045 16.5036 16.4875 16.082 19\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M12 19H6C4.34315 19 3 17.6569 3 16V8C3 6.34315 4.34315 5 6 5H18C19.6569 5 21 6.34315 21 8V10H3.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconCreditCardNfc;\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,6ECjCY,IAAlB,sBAGO,IAAM,EAAoD,CAAC,IAAU,CAC1E,OAAO,wBAAsgB,EAAtgB,IAAqB,EAAO,UAAU,kCAAiC,wBAAC,OAAD,CAAM,EAAE,wDAAwD,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,4DAA4D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,mGAAmG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGhgB",
|
|
9
|
+
"debugId": "0ED54A17D402FFC164756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import p from"react";var a=({children:e,size:r=24,ariaLabel:n,color:s,ariaHidden:o=!0,style:i,...l})=>{return p.createElement("svg",{...l,"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,...i}},n&&!o&&p.createElement("title",null,n),e)};import t from"react";var c=(e)=>{return t.createElement(a,{...e,ariaLabel:"credit-card-nfc, card, payment"},t.createElement("path",{d:"M19.707 19C19.959 18.4233 20.4223 17.96 20.999 17.708",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.createElement("path",{d:"M20.9991 14.083C18.4866 14.5045 16.5036 16.4875 16.082 19",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round"}),t.createElement("path",{d:"M12 19H6C4.34315 19 3 17.6569 3 16V8C3 6.34315 4.34315 5 6 5H18C19.6569 5 21 6.34315 21 8V10H3.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},h=c;export{h as default,c as IconCreditCardNfc};
|
|
2
|
+
|
|
3
|
+
//# debugId=BF19D2FE50D0C61964756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconCreditCardNfc/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 IconCreditCardNfc: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"credit-card-nfc, card, payment\"><path d=\"M19.707 19C19.959 18.4233 20.4223 17.96 20.999 17.708\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M20.9991 14.083C18.4866 14.5045 16.5036 16.4875 16.082 19\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\"/><path d=\"M12 19H6C4.34315 19 3 17.6569 3 16V8C3 6.34315 4.34315 5 6 5H18C19.6569 5 21 6.34315 21 8V10H3.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconCreditCardNfc;\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,EAAoD,CAAC,IAAU,CAC1E,OAAO,gBAAsgB,EAAtgB,IAAqB,EAAO,UAAU,kCAAiC,gBAAC,OAAD,CAAM,EAAE,wDAAwD,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,4DAA4D,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,mGAAmG,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAGhgB",
|
|
9
|
+
"debugId": "BF19D2FE50D0C61964756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconDevices2/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var x=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:u,getOwnPropertyDescriptor:I}=Object,m=Object.prototype.hasOwnProperty;function h(
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:u,getOwnPropertyDescriptor:I}=Object,m=Object.prototype.hasOwnProperty;function h(o){return this[o]}var V,b,k=(o,e,r)=>{var t=o!=null&&typeof o==="object";if(t){var n=e?V??=new WeakMap:b??=new WeakMap,a=n.get(o);if(a)return a}r=o!=null?x(B(o)):{};let s=e||!o||!o.__esModule?p(r,"default",{value:o,enumerable:!0}):r;for(let l of u(o))if(!m.call(s,l))p(s,l,{get:h.bind(o,l),enumerable:!0});if(t)n.set(o,s);return s},f=(o)=>{var e=(d??=new WeakMap).get(o),r;if(e)return e;if(e=p({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var t of u(o))if(!m.call(e,t))p(e,t,{get:h.bind(o,t),enumerable:!(r=I(o,t))||r.enumerable})}return d.set(o,e),e},d;var v=(o)=>o;function w(o,e){this[o]=v.bind(null,e)}var L=(o,e)=>{for(var r in e)p(o,r,{get:e[r],enumerable:!0,configurable:!0,set:w.bind(e,r)})};var y={};L(y,{CentralIconBase:()=>C});module.exports=f(y);var c=k(require("react")),C=({children:o,size:e=24,ariaLabel:r,color:t,ariaHidden:n=!0,style:a,...s})=>{return c.default.createElement("svg",{...s,"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,...a}},r&&!n&&c.default.createElement("title",null,r),o)};var P={};L(P,{default:()=>G,IconDevices2:()=>g});module.exports=f(P);var i=k(require("react"));var g=(o)=>{return i.default.createElement(C,{...o,ariaLabel:"devices-2, macbook, iphone, phone, connected"},i.default.createElement("path",{d:"M16 12C16 10.8954 16.8954 10 18 10L20 10C21.1046 10 22 10.8954 22 12V18C22 19.1046 21.1046 20 20 20H18C16.8954 20 16 19.1046 16 18V12Z",stroke:"currentColor",strokeWidth:"1.9",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement("path",{d:"M12.5 19.5H5C3.34315 19.5 2 18.1569 2 16.5L2 16H12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),i.default.createElement("path",{d:"M20 6.5V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},G=g;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=AA293DBD6F27191964756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconDevices2/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 IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2, macbook, iphone, phone, connected\"><path d=\"M16 12C16 10.8954 16.8954 10 18 10L20 10C21.1046 10 22 10.8954 22 12V18C22 19.1046 21.1046 20 20 20H18C16.8954 20 16 19.1046 16 18V12Z\" stroke=\"currentColor\" strokeWidth=\"1.9\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.5 19.5H5C3.34315 19.5 2 18.1569 2 16.5L2 16H12.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20 6.5V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconDevices2;\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,wECjCY,IAAlB,sBAGO,IAAM,EAA+C,CAAC,IAAU,CACrE,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,wECjCY,IAAlB,sBAGO,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAAmnB,EAAnnB,IAAqB,EAAO,UAAU,gDAA+C,wBAAC,OAAD,CAAM,EAAE,yIAAyI,OAAO,eAAe,YAAY,MAAM,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,sEAAsE,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG7mB",
|
|
9
|
+
"debugId": "AA293DBD6F27191964756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconDevices2/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import s from"react";var p=({children:
|
|
1
|
+
import s from"react";var p=({children:r,size:o=24,ariaLabel:n,color:i,ariaHidden:t=!0,style:a,...l})=>{return s.createElement("svg",{...l,"aria-hidden":t,role:t?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:i,...a}},n&&!t&&s.createElement("title",null,n),r)};import e from"react";var c=(r)=>{return e.createElement(p,{...r,ariaLabel:"devices-2, macbook, iphone, phone, connected"},e.createElement("path",{d:"M16 12C16 10.8954 16.8954 10 18 10L20 10C21.1046 10 22 10.8954 22 12V18C22 19.1046 21.1046 20 20 20H18C16.8954 20 16 19.1046 16 18V12Z",stroke:"currentColor",strokeWidth:"1.9",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M12.5 19.5H5C3.34315 19.5 2 18.1569 2 16.5L2 16H12.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),e.createElement("path",{d:"M20 6.5V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},k=c;export{k as default,c as IconDevices2};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=B010EA056329098A64756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconDevices2/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 IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2,
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconDevices2: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"devices-2, macbook, iphone, phone, connected\"><path d=\"M16 12C16 10.8954 16.8954 10 18 10L20 10C21.1046 10 22 10.8954 22 12V18C22 19.1046 21.1046 20 20 20H18C16.8954 20 16 19.1046 16 18V12Z\" stroke=\"currentColor\" strokeWidth=\"1.9\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12.5 19.5H5C3.34315 19.5 2 18.1569 2 16.5L2 16H12.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M20 6.5V6C20 4.89543 19.1046 4 18 4H6C4.89543 4 4 4.89543 4 6V15.75\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconDevices2;\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,EAA+C,CAAC,IAAU,CACrE,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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAmnB,EAAnnB,IAAqB,EAAO,UAAU,gDAA+C,gBAAC,OAAD,CAAM,EAAE,yIAAyI,OAAO,eAAe,YAAY,MAAM,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,uDAAuD,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,sEAAsE,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG7mB",
|
|
9
|
+
"debugId": "B010EA056329098A64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
var x=Object.create;var{getPrototypeOf:B,defineProperty:p,getOwnPropertyNames:m,getOwnPropertyDescriptor:I}=Object,c=Object.prototype.hasOwnProperty;function h(r){return this[r]}var P,V,k=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var n=o?P??=new WeakMap:V??=new WeakMap,i=n.get(r);if(i)return i}e=r!=null?x(B(r)):{};let s=o||!r||!r.__esModule?p(e,"default",{value:r,enumerable:!0}):e;for(let l of m(r))if(!c.call(s,l))p(s,l,{get:h.bind(r,l),enumerable:!0});if(t)n.set(r,s);return s},f=(r)=>{var o=(d??=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 m(r))if(!c.call(o,t))p(o,t,{get:h.bind(r,t),enumerable:!(e=I(r,t))||e.enumerable})}return d.set(r,o),o},d;var w=(r)=>r;function y(r,o){this[r]=w.bind(null,o)}var L=(r,o)=>{for(var e in o)p(r,e,{get:o[e],enumerable:!0,configurable:!0,set:y.bind(o,e)})};var b={};L(b,{CentralIconBase:()=>C});module.exports=f(b);var u=k(require("react")),C=({children:r,size:o=24,ariaLabel:e,color:t,ariaHidden:n=!0,style:i,...s})=>{return u.default.createElement("svg",{...s,"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 v={};L(v,{default:()=>G,IconHomePlus:()=>g});module.exports=f(v);var a=k(require("react"));var g=(r)=>{return a.default.createElement(C,{...r,ariaLabel:"home-plus"},a.default.createElement("path",{d:"M5.41 8.11875C4.53286 8.66696 4 9.62837 4 10.6627V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V10.6627C20 9.62837 19.4671 8.66696 18.59 8.11875L13.59 4.99375C12.6172 4.38574 11.3828 4.38574 10.41 4.99375L5.41 8.11875Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M12 10.5V15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),a.default.createElement("path",{d:"M9.5 13H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},G=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=6C2865C5EA91990464756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/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 IconHomePlus: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"home-plus\"><path d=\"M5.41 8.11875C4.53286 8.66696 4 9.62837 4 10.6627V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V10.6627C20 9.62837 19.4671 8.66696 18.59 8.11875L13.59 4.99375C12.6172 4.38574 11.3828 4.38574 10.41 4.99375L5.41 8.11875Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 10.5V15.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 13H14.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\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,wECjCY,IAAlB,sBAGO,IAAM,EAA+C,CAAC,IAAU,CACrE,OAAO,wBAAklB,EAAllB,IAAqB,EAAO,UAAU,aAAY,wBAAC,OAAD,CAAM,EAAE,2OAA2O,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5kB",
|
|
9
|
+
"debugId": "6C2865C5EA91990464756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import s from"react";var p=({children:e,size:r=24,ariaLabel:n,color:a,ariaHidden:t=!0,style:i,...l})=>{return s.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&&s.createElement("title",null,n),e)};import o from"react";var u=(e)=>{return o.createElement(p,{...e,ariaLabel:"home-plus"},o.createElement("path",{d:"M5.41 8.11875C4.53286 8.66696 4 9.62837 4 10.6627V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V10.6627C20 9.62837 19.4671 8.66696 18.59 8.11875L13.59 4.99375C12.6172 4.38574 11.3828 4.38574 10.41 4.99375L5.41 8.11875Z",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M12 10.5V15.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement("path",{d:"M9.5 13H14.5",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}))},k=u;export{k as default,u as IconHomePlus};
|
|
2
|
+
|
|
3
|
+
//# debugId=52219942DE2A497364756E2164756E21
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["src/CentralIconBase/index.tsx", "src/IconHomePlus/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 IconHomePlus: React.FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props} ariaLabel=\"home-plus\"><path d=\"M5.41 8.11875C4.53286 8.66696 4 9.62837 4 10.6627V17C4 18.6569 5.34315 20 7 20H17C18.6569 20 20 18.6569 20 17V10.6627C20 9.62837 19.4671 8.66696 18.59 8.11875L13.59 4.99375C12.6172 4.38574 11.3828 4.38574 10.41 4.99375L5.41 8.11875Z\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M12 10.5V15.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><path d=\"M9.5 13H14.5\" stroke=\"currentColor\" strokeWidth=\"2\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n};\n\nexport default IconHomePlus;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAklB,EAAllB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,EAAE,2OAA2O,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,gBAAgB,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,OAAD,CAAM,EAAE,eAAe,OAAO,eAAe,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAO,CAAI,GAG5kB",
|
|
9
|
+
"debugId": "52219942DE2A497364756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|
package/IconPageCloud/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var h=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,g=Object.prototype.hasOwnProperty;function
|
|
1
|
+
var h=Object.create;var{getPrototypeOf:P,defineProperty:a,getOwnPropertyNames:u,getOwnPropertyDescriptor:w}=Object,g=Object.prototype.hasOwnProperty;function d(e){return this[e]}var y,V,f=(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:d.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:d.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:()=>c});module.exports=x(G);var C=f(require("react")),c=({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 m=f(require("react"));var I=(e)=>{return m.default.createElement(c,{...e,ariaLabel:"page-cloud"},m.default.createElement("path",{d:"M9 21H8C6.34315 21 5 19.6569 5 18V6C5 4.34315 6.34315 3 8 3H16C17.6569 3 19 4.34315 19 6V10.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",strokeLinecap:"round"}))},k=I;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=5238B724D8DCDB2664756E2164756E21
|
|
@@ -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 21H8C6.34315 21 5 19.6569 5 18V6C5 4.34315 6.34315 3 8 3H16C17.6569 3 19 4.34315 19 6V10.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"
|
|
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 21H8C6.34315 21 5 19.6569 5 18V6C5 4.34315 6.34315 3 8 3H16C17.6569 3 19 4.34315 19 6V10.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\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPageCloud;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAAkB,IAAlB,sBAQa,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,wBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,wBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,yECjCY,IAAlB,sBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
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,wBAAga,EAAha,IAAqB,EAAO,UAAU,cAAa,wBAAC,OAAD,CAAM,EAAE,sSAAsS,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAG1Z",
|
|
9
|
+
"debugId": "5238B724D8DCDB2664756E2164756E21",
|
|
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: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
|
|
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 c=(r)=>{return a.createElement(p,{...r,ariaLabel:"page-cloud"},a.createElement("path",{d:"M9 21H8C6.34315 21 5 19.6569 5 18V6C5 4.34315 6.34315 3 8 3H16C17.6569 3 19 4.34315 19 6V10.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",strokeLinecap:"round"}))},f=c;export{f as default,c as IconPageCloud};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=8DBA5A837141EA0364756E2164756E21
|
|
@@ -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 21H8C6.34315 21 5 19.6569 5 18V6C5 4.34315 6.34315 3 8 3H16C17.6569 3 19 4.34315 19 6V10.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"
|
|
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 21H8C6.34315 21 5 19.6569 5 18V6C5 4.34315 6.34315 3 8 3H16C17.6569 3 19 4.34315 19 6V10.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\" strokeLinecap=\"round\"/></CentralIconBase>;\n};\n\nexport default IconPageCloud;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAAgD,CAAC,IAAU,CACtE,OAAO,
|
|
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,gBAAga,EAAha,IAAqB,EAAO,UAAU,cAAa,gBAAC,OAAD,CAAM,EAAE,sSAAsS,OAAO,eAAe,YAAY,IAAI,cAAc,QAAO,CAAI,GAG1Z",
|
|
9
|
+
"debugId": "8DBA5A837141EA0364756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/README.md
CHANGED
|
@@ -476,6 +476,7 @@ Below is a complete list of available icons:
|
|
|
476
476
|
- IconTower
|
|
477
477
|
- IconGoldenGateBridge
|
|
478
478
|
- IconHomeRoofDoor
|
|
479
|
+
- IconHomePlus
|
|
479
480
|
|
|
480
481
|
### Clouds
|
|
481
482
|
|
|
@@ -1708,6 +1709,7 @@ Below is a complete list of available icons:
|
|
|
1708
1709
|
- Icon3dPackage
|
|
1709
1710
|
- IconCurrencyLira
|
|
1710
1711
|
- Icon3dPackage2
|
|
1712
|
+
- IconCreditCardNfc
|
|
1711
1713
|
|
|
1712
1714
|
### Social Media & Brands
|
|
1713
1715
|
|
|
@@ -1922,6 +1924,7 @@ Below is a complete list of available icons:
|
|
|
1922
1924
|
- IconCd
|
|
1923
1925
|
- IconVoiceShare
|
|
1924
1926
|
- IconConductor
|
|
1927
|
+
- IconAlbums2
|
|
1925
1928
|
|
|
1926
1929
|
### Sports
|
|
1927
1930
|
|