@central-icons-react-native/round-filled-radius-2-stroke-1 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:"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM13.1855 8.48633C13.0145 8.26954 12.7002 8.23235 12.4834 8.40332C12.2668 8.57437 12.2295 8.88874 12.4004 9.10547C13.0669 9.95059 13.4648 11.0174 13.4648 12.1777C13.4646 13.3378 13.0669 14.4041 12.4004 15.249C12.2297 15.4658 12.2667 15.7802 12.4834 15.9512C12.7001 16.1219 13.0145 16.0846 13.1855 15.8682C13.9861 14.8531 14.4646 13.5704 14.4648 12.1777C14.4648 10.7848 13.9862 9.50156 13.1855 8.48633ZM10.3574 10.1914C10.1558 10.0028 9.83903 10.0133 9.65039 10.2148C9.46205 10.4165 9.47234 10.7333 9.67383 10.9219C10.0098 11.2362 10.2188 11.6823 10.2188 12.1777C10.2186 12.673 10.0098 13.1194 9.67383 13.4336C9.4727 13.6222 9.46219 13.9381 9.65039 14.1396C9.83896 14.341 10.1558 14.3524 10.3574 14.1641C10.8871 13.6686 11.2186 12.9612 11.2188 12.1777C11.2188 11.3942 10.8871 10.6869 10.3574 10.1914Z",fill:"currentColor"}))},V=g;
2
+
3
+ //# debugId=43FAAE17A061C34964756E2164756E21
@@ -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=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM13.1855 8.48633C13.0145 8.26954 12.7002 8.23235 12.4834 8.40332C12.2668 8.57437 12.2295 8.88874 12.4004 9.10547C13.0669 9.95059 13.4648 11.0174 13.4648 12.1777C13.4646 13.3378 13.0669 14.4041 12.4004 15.249C12.2297 15.4658 12.2667 15.7802 12.4834 15.9512C12.7001 16.1219 13.0145 16.0846 13.1855 15.8682C13.9861 14.8531 14.4646 13.5704 14.4648 12.1777C14.4648 10.7848 13.9862 9.50156 13.1855 8.48633ZM10.3574 10.1914C10.1558 10.0028 9.83903 10.0133 9.65039 10.2148C9.46205 10.4165 9.47234 10.7333 9.67383 10.9219C10.0098 11.2362 10.2188 11.6823 10.2188 12.1777C10.2186 12.673 10.0098 13.1194 9.67383 13.4336C9.4727 13.6222 9.46219 13.9381 9.65039 14.1396C9.83896 14.341 10.1558 14.3524 10.3574 14.1641C10.8871 13.6686 11.2186 12.9612 11.2188 12.1777C11.2188 11.3942 10.8871 10.6869 10.3574 10.1914Z\" 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,wBAA4gC,EAA5gC,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,26BAA26B,KAAK,eAAc,CAAI,GAGtgC",
9
+ "debugId": "43FAAE17A061C34964756E2164756E21",
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:"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM13.1855 8.48633C13.0145 8.26954 12.7002 8.23235 12.4834 8.40332C12.2668 8.57437 12.2295 8.88874 12.4004 9.10547C13.0669 9.95059 13.4648 11.0174 13.4648 12.1777C13.4646 13.3378 13.0669 14.4041 12.4004 15.249C12.2297 15.4658 12.2667 15.7802 12.4834 15.9512C12.7001 16.1219 13.0145 16.0846 13.1855 15.8682C13.9861 14.8531 14.4646 13.5704 14.4648 12.1777C14.4648 10.7848 13.9862 9.50156 13.1855 8.48633ZM10.3574 10.1914C10.1558 10.0028 9.83903 10.0133 9.65039 10.2148C9.46205 10.4165 9.47234 10.7333 9.67383 10.9219C10.0098 11.2362 10.2188 11.6823 10.2188 12.1777C10.2186 12.673 10.0098 13.1194 9.67383 13.4336C9.4727 13.6222 9.46219 13.9381 9.65039 14.1396C9.83896 14.341 10.1558 14.3524 10.3574 14.1641C10.8871 13.6686 11.2186 12.9612 11.2188 12.1777C11.2188 11.3942 10.8871 10.6869 10.3574 10.1914Z",fill:"currentColor"}))},x=a;export{x as default,a as IconCardNfc};
2
+
3
+ //# debugId=7C0AA94019922CF864756E2164756E21
@@ -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=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V17.5C22 18.8807 20.8807 20 19.5 20H4.5C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H19.5ZM13.1855 8.48633C13.0145 8.26954 12.7002 8.23235 12.4834 8.40332C12.2668 8.57437 12.2295 8.88874 12.4004 9.10547C13.0669 9.95059 13.4648 11.0174 13.4648 12.1777C13.4646 13.3378 13.0669 14.4041 12.4004 15.249C12.2297 15.4658 12.2667 15.7802 12.4834 15.9512C12.7001 16.1219 13.0145 16.0846 13.1855 15.8682C13.9861 14.8531 14.4646 13.5704 14.4648 12.1777C14.4648 10.7848 13.9862 9.50156 13.1855 8.48633ZM10.3574 10.1914C10.1558 10.0028 9.83903 10.0133 9.65039 10.2148C9.46205 10.4165 9.47234 10.7333 9.67383 10.9219C10.0098 11.2362 10.2188 11.6823 10.2188 12.1777C10.2186 12.673 10.0098 13.1194 9.67383 13.4336C9.4727 13.6222 9.46219 13.9381 9.65039 14.1396C9.83896 14.341 10.1558 14.3524 10.3574 14.1641C10.8871 13.6686 11.2186 12.9612 11.2188 12.1777C11.2188 11.3942 10.8871 10.6869 10.3574 10.1914Z\" 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,gBAA4gC,EAA5gC,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,26BAA26B,KAAK,eAAc,CAAI,GAGtgC",
9
+ "debugId": "7C0AA94019922CF864756E2164756E21",
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 V(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:V.bind(o,C)})};var Z={};x(Z,{CentralIconBase:()=>a});module.exports=I(Z);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 b={};x(b,{default:()=>w,IconCreditCardNfc:()=>v});module.exports=I(b);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 10.5C16.7533 10.5 12.5 14.7533 12.5 20H4.5C3.11929 20 2 18.8807 2 17.5V10H22V10.5Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21.4287 16.041C21.7021 16.0019 21.956 16.1925 21.9951 16.4658C22.0336 16.7388 21.8433 16.9922 21.5703 17.0312C20.2577 17.2192 19.2181 18.2586 19.0303 19.5713C18.991 19.8442 18.7378 20.0348 18.4648 19.9961C18.1917 19.9569 18.0013 19.7028 18.04 19.4297C18.2908 17.6772 19.6762 16.2919 21.4287 16.041Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M21.4648 12.5186C21.7403 12.4992 21.9796 12.707 21.999 12.9824C22.0184 13.2579 21.8106 13.4972 21.5352 13.5166C18.3161 13.7438 15.7438 16.3161 15.5166 19.5352C15.4972 19.8106 15.2579 20.0184 14.9824 19.999C14.707 19.9796 14.4991 19.7403 14.5186 19.4648C14.7808 15.749 17.749 12.7808 21.4648 12.5186Z",fill:"currentColor"}),n.default.createElement(l.Path,{d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V9H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5Z",fill:"currentColor"}))},w=v;
2
+
3
+ //# debugId=1BAAB6DA5F6B278364756E2164756E21
@@ -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 10.5C16.7533 10.5 12.5 14.7533 12.5 20H4.5C3.11929 20 2 18.8807 2 17.5V10H22V10.5Z\" fill=\"currentColor\"/><Path d=\"M21.4287 16.041C21.7021 16.0019 21.956 16.1925 21.9951 16.4658C22.0336 16.7388 21.8433 16.9922 21.5703 17.0312C20.2577 17.2192 19.2181 18.2586 19.0303 19.5713C18.991 19.8442 18.7378 20.0348 18.4648 19.9961C18.1917 19.9569 18.0013 19.7028 18.04 19.4297C18.2908 17.6772 19.6762 16.2919 21.4287 16.041Z\" fill=\"currentColor\"/><Path d=\"M21.4648 12.5186C21.7403 12.4992 21.9796 12.707 21.999 12.9824C22.0184 13.2579 21.8106 13.4972 21.5352 13.5166C18.3161 13.7438 15.7438 16.3161 15.5166 19.5352C15.4972 19.8106 15.2579 20.0184 14.9824 19.999C14.707 19.9796 14.4991 19.7403 14.5186 19.4648C14.7808 15.749 17.749 12.7808 21.4648 12.5186Z\" fill=\"currentColor\"/><Path d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V9H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5Z\" 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,wBAAq5B,EAAr5B,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,8EAA8E,KAAK,eAAc,CAAI,GAG/4B",
9
+ "debugId": "1BAAB6DA5F6B278364756E2164756E21",
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 10.5C16.7533 10.5 12.5 14.7533 12.5 20H4.5C3.11929 20 2 18.8807 2 17.5V10H22V10.5Z",fill:"currentColor"}),o.createElement(C,{d:"M21.4287 16.041C21.7021 16.0019 21.956 16.1925 21.9951 16.4658C22.0336 16.7388 21.8433 16.9922 21.5703 17.0312C20.2577 17.2192 19.2181 18.2586 19.0303 19.5713C18.991 19.8442 18.7378 20.0348 18.4648 19.9961C18.1917 19.9569 18.0013 19.7028 18.04 19.4297C18.2908 17.6772 19.6762 16.2919 21.4287 16.041Z",fill:"currentColor"}),o.createElement(C,{d:"M21.4648 12.5186C21.7403 12.4992 21.9796 12.707 21.999 12.9824C22.0184 13.2579 21.8106 13.4972 21.5352 13.5166C18.3161 13.7438 15.7438 16.3161 15.5166 19.5352C15.4972 19.8106 15.2579 20.0184 14.9824 19.999C14.707 19.9796 14.4991 19.7403 14.5186 19.4648C14.7808 15.749 17.749 12.7808 21.4648 12.5186Z",fill:"currentColor"}),o.createElement(C,{d:"M19.5 4C20.8807 4 22 5.11929 22 6.5V9H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5Z",fill:"currentColor"}))},P=f;export{P as default,f as IconCreditCardNfc};
2
+
3
+ //# debugId=39723AD6CBE6115364756E2164756E21
@@ -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 10.5C16.7533 10.5 12.5 14.7533 12.5 20H4.5C3.11929 20 2 18.8807 2 17.5V10H22V10.5Z\" fill=\"currentColor\"/><Path d=\"M21.4287 16.041C21.7021 16.0019 21.956 16.1925 21.9951 16.4658C22.0336 16.7388 21.8433 16.9922 21.5703 17.0312C20.2577 17.2192 19.2181 18.2586 19.0303 19.5713C18.991 19.8442 18.7378 20.0348 18.4648 19.9961C18.1917 19.9569 18.0013 19.7028 18.04 19.4297C18.2908 17.6772 19.6762 16.2919 21.4287 16.041Z\" fill=\"currentColor\"/><Path d=\"M21.4648 12.5186C21.7403 12.4992 21.9796 12.707 21.999 12.9824C22.0184 13.2579 21.8106 13.4972 21.5352 13.5166C18.3161 13.7438 15.7438 16.3161 15.5166 19.5352C15.4972 19.8106 15.2579 20.0184 14.9824 19.999C14.707 19.9796 14.4991 19.7403 14.5186 19.4648C14.7808 15.749 17.749 12.7808 21.4648 12.5186Z\" fill=\"currentColor\"/><Path d=\"M19.5 4C20.8807 4 22 5.11929 22 6.5V9H2V6.5C2 5.11929 3.11929 4 4.5 4H19.5Z\" 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,gBAAq5B,EAAr5B,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,yFAAyF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8SAA8S,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,8EAA8E,KAAK,eAAc,CAAI,GAG/4B",
9
+ "debugId": "39723AD6CBE6115364756E2164756E21",
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