@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.267 → 1.1.269

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCardNfc: FC<CentralIconBaseProps>;
4
+ export default IconCardNfc;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:y,defineProperty:t,getOwnPropertyNames:s,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var S,b,d=(r,o,e)=>{var C=r!=null&&typeof r==="object";if(C){var m=o?S??=new WeakMap:b??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?h(y(r)):{};let n=o||!r||!r.__esModule?t(e,"default",{value:r,enumerable:!0}):e;for(let p of s(r))if(!i.call(n,p))t(n,p,{get:u.bind(r,p),enumerable:!0});if(C)m.set(r,n);return n},B=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=t({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var C of s(r))if(!i.call(o,C))t(o,C,{get:u.bind(r,C),enumerable:!(e=F(r,C))||e.enumerable})}return f.set(r,o),o},f;var M=(r)=>r;function Z(r,o){this[r]=M.bind(null,o)}var I=(r,o)=>{for(var e in o)t(r,e,{get:o[e],enumerable:!0,configurable:!0,set:Z.bind(o,e)})};var w={};I(w,{CentralIconBase:()=>l});module.exports=B(w);var v=d(require("react")),x=require("react-native-svg"),l=({children:r,size:o=24,...e})=>{return v.default.createElement(x.Svg,{...e,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var H={};I(H,{default:()=>V,IconCardNfc:()=>g});module.exports=B(H);var a=d(require("react"));var P=require("react-native-svg"),g=(r)=>{return a.default.createElement(l,{...r},a.default.createElement(P.Path,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=8A1BF35978E6C2C564756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCardNfc/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCardNfc;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,uECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAAwC,CAAC,IAAU,CAC9D,OAAO,wBAAu/B,EAAv/B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s5BAAs5B,KAAK,eAAc,CAAI,GAGj/B",
9
+ "debugId": "8A1BF35978E6C2C564756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import n from"react";import{Svg as p}from"react-native-svg";var e=({children:o,size:r=24,...t})=>{return n.createElement(p,{...t,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import C from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return C.createElement(e,{...o},C.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z",fill:"currentColor"}))},x=a;export{x as default,a as IconCardNfc};
2
+
3
+ //# debugId=0245545CA769CDA764756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCardNfc/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M21 4C21.5523 4 22 4.44772 22 5V19C22 19.5523 21.5523 20 21 20H3C2.44772 20 2 19.5523 2 19V5C2 4.44772 2.44772 4 3 4H21ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCardNfc;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAAwC,CAAC,IAAU,CAC9D,OAAO,gBAAu/B,EAAv/B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s5BAAs5B,KAAK,eAAc,CAAI,GAGj/B",
9
+ "debugId": "0245545CA769CDA764756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,4 @@
1
+ import { FC } from "react";
2
+ import { type CentralIconBaseProps } from "../CentralIconBase";
3
+ export declare const IconCreditCardNfc: FC<CentralIconBaseProps>;
4
+ export default IconCreditCardNfc;
@@ -0,0 +1,3 @@
1
+ var h=Object.create;var{getPrototypeOf:y,defineProperty:e,getOwnPropertyNames:i,getOwnPropertyDescriptor:F}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var H,M,B=(r,o,C)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?H??=new WeakMap:M??=new WeakMap,s=m.get(r);if(s)return s}C=r!=null?h(y(r)):{};let p=o||!r||!r.__esModule?e(C,"default",{value:r,enumerable:!0}):C;for(let f of i(r))if(!u.call(p,f))e(p,f,{get:d.bind(r,f),enumerable:!0});if(t)m.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),C;if(o)return o;if(o=e({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of i(r))if(!u.call(o,t))e(o,t,{get:d.bind(r,t),enumerable:!(C=F(r,t))||C.enumerable})}return c.set(r,o),o},c;var S=(r)=>r;function Z(r,o){this[r]=S.bind(null,o)}var x=(r,o)=>{for(var C in o)e(r,C,{get:o[C],enumerable:!0,configurable:!0,set:Z.bind(o,C)})};var b={};x(b,{CentralIconBase:()=>a});module.exports=I(b);var P=B(require("react")),g=require("react-native-svg"),a=({children:r,size:o=24,...C})=>{return P.default.createElement(g.Svg,{...C,width:typeof o==="number"?`${o}px`:o,height:typeof o==="number"?`${o}px`:o,viewBox:"0 0 24 24",fill:"none"},r)};var V={};x(V,{default:()=>w,IconCreditCardNfc:()=>v});module.exports=I(V);var n=B(require("react"));var l=require("react-native-svg"),v=(r)=>{return n.default.createElement(a,{...r},n.default.createElement(l.Path,{d:"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z",fill:"currentColor"}))},w=v;
2
+
3
+ //# debugId=CC1101CC239812BA64756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCreditCardNfc/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCreditCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z\" fill=\"currentColor\"/><Path d=\"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z\" fill=\"currentColor\"/><Path d=\"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z\" fill=\"currentColor\"/><Path d=\"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCreditCardNfc;\n"
7
+ ],
8
+ "mappings": "w7BAA0B,IAA1B,sBACA,8BAMa,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,wBAQE,MARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,6ECvBoB,IAA1B,sBAEqB,IAArB,8BAEa,EAA8C,CAAC,IAAU,CACpE,OAAO,wBAAo3B,EAAp3B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,ySAAyS,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,6SAA6S,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,oEAAoE,KAAK,eAAc,CAAI,GAG92B",
9
+ "debugId": "CC1101CC239812BA64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import l from"react";import{Svg as p}from"react-native-svg";var n=({children:t,size:r=24,...e})=>{return l.createElement(p,{...e,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t)};import o from"react";import{Path as C}from"react-native-svg";var f=(t)=>{return o.createElement(n,{...t},o.createElement(C,{d:"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z",fill:"currentColor"}),o.createElement(C,{d:"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z",fill:"currentColor"}),o.createElement(C,{d:"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z",fill:"currentColor"}),o.createElement(C,{d:"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z",fill:"currentColor"}))},P=f;export{P as default,f as IconCreditCardNfc};
2
+
3
+ //# debugId=787D273EC87F153664756E2164756E21
@@ -0,0 +1,11 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["src/CentralIconBase/index.tsx", "src/IconCreditCardNfc/index.tsx"],
4
+ "sourcesContent": [
5
+ "import React, { FC } from \"react\";\nimport { Svg, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n} & SvgProps;\n\nexport const CentralIconBase: FC<\n CentralIconBaseProps\n> = ({\n children,\n size = 24,\n ...props\n}) => {\n return (\n <Svg\n {...props}\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 >\n {children}\n </Svg>\n );\n};\n",
6
+ "import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconCreditCardNfc: FC<CentralIconBaseProps> = (props) => {\n return <CentralIconBase {...props}><Path d=\"M22 11C17.0294 11 13 15.0294 13 20H3C2.44772 20 2 19.5523 2 19V11H22Z\" fill=\"currentColor\"/><Path d=\"M20.835 13.0967C21.3795 13.0055 21.895 13.3734 21.9863 13.918C22.0774 14.4625 21.7096 14.978 21.165 15.0693C19.0735 15.4204 17.4204 17.0735 17.0693 19.165C16.978 19.7096 16.4625 20.0774 15.918 19.9863C15.3734 19.895 15.0056 19.3795 15.0967 18.835C15.5888 15.9019 17.9019 13.5888 20.835 13.0967Z\" fill=\"currentColor\"/><Path d=\"M20.5996 16.792C21.1056 16.5709 21.6949 16.8016 21.916 17.3076C22.1371 17.8137 21.9064 18.4029 21.4004 18.624C21.0545 18.7751 20.7751 19.0545 20.624 19.4004C20.4029 19.9064 19.8137 20.1371 19.3076 19.916C18.8016 19.6948 18.5709 19.1057 18.792 18.5996C19.1448 17.7921 19.7921 17.1448 20.5996 16.792Z\" fill=\"currentColor\"/><Path d=\"M21 4C21.5523 4 22 4.44772 22 5V9H2V5C2 4.44772 2.44772 4 3 4H21Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCreditCardNfc;\n"
7
+ ],
8
+ "mappings": "AAAA,qBACA,cAAS,yBAMF,IAAM,EAET,EACF,WACA,OAAO,MACJ,KACC,CACJ,OACE,gBAQE,EARF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,CACD,GCvBN,qBAEA,eAAS,yBAEF,IAAM,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAo3B,EAAp3B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,ySAAyS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6SAA6S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oEAAoE,KAAK,eAAc,CAAI,GAG92B",
9
+ "debugId": "787D273EC87F153664756E2164756E21",
10
+ "names": []
11
+ }
package/README.md CHANGED
@@ -1675,6 +1675,8 @@ Below is a complete list of available icons:
1675
1675
  - Icon3dPackage
1676
1676
  - IconCurrencyLira
1677
1677
  - Icon3dPackage2
1678
+ - IconCreditCardNfc
1679
+ - IconCardNfc
1678
1680
 
1679
1681
  ### Social Media & Brands
1680
1682