@central-icons-react-native/square-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:C,getOwnPropertyNames:s,getOwnPropertyDescriptor:F}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var L,S,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?L??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?h(y(r)):{};let n=o||!r||!r.__esModule?C(e,"default",{value:r,enumerable:!0}):e;for(let p of s(r))if(!i.call(n,p))C(n,p,{get:u.bind(r,p),enumerable:!0});if(t)m.set(r,n);return n},B=(r)=>{var o=(f??=new WeakMap).get(r),e;if(o)return o;if(o=C({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var t of s(r))if(!i.call(o,t))C(o,t,{get:u.bind(r,t),enumerable:!(e=F(r,t))||e.enumerable})}return f.set(r,o),o},f;var b=(r)=>r;function M(r,o){this[r]=b.bind(null,o)}var I=(r,o)=>{for(var e in o)C(r,e,{get:o[e],enumerable:!0,configurable:!0,set:M.bind(o,e)})};var Z={};I(Z,{CentralIconBase:()=>l});module.exports=B(Z);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 w={};I(w,{default:()=>H,IconCardNfc:()=>g});module.exports=B(w);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:"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z",fill:"currentColor"}))},H=g;
2
+
3
+ //# debugId=EF33259DB85E2FDF64756E2164756E21
@@ -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=\"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z\" 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,wBAAy8B,EAAz8B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w2BAAw2B,KAAK,eAAc,CAAI,GAGn8B",
9
+ "debugId": "EF33259DB85E2FDF64756E2164756E21",
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,...C})=>{return n.createElement(p,{...C,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o)};import t from"react";import{Path as l}from"react-native-svg";var a=(o)=>{return t.createElement(e,{...o},t.createElement(l,{fillRule:"evenodd",clipRule:"evenodd",d:"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z",fill:"currentColor"}))},x=a;export{x as default,a as IconCardNfc};
2
+
3
+ //# debugId=D6AA93F2D18FA64564756E2164756E21
@@ -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=\"M22 20H2V4H22V20ZM11.4561 8.97559C11.5602 9.07238 11.6599 9.17463 11.7539 9.28125C12.4194 10.0358 12.8223 11.0253 12.8223 12.1104C12.822 13.1952 12.4194 14.1841 11.7539 14.9385C11.6598 15.0452 11.5602 15.1473 11.4561 15.2441L12.8174 16.709C12.97 16.5671 13.116 16.418 13.2539 16.2617C14.2293 15.156 14.822 13.7008 14.8223 12.1104C14.8223 10.5197 14.2293 9.06391 13.2539 7.95801C13.1161 7.80182 12.9699 7.65251 12.8174 7.51074L11.4561 8.97559ZM9.37109 11.2109C9.40238 11.2398 9.43279 11.2708 9.46094 11.3027C9.65111 11.5186 9.76562 11.8002 9.76562 12.1104C9.7654 12.4204 9.65124 12.7022 9.46094 12.918C9.43287 12.9498 9.40228 12.9801 9.37109 13.0088L10.7266 14.4795C10.8084 14.4041 10.8863 14.3237 10.96 14.2402C11.4602 13.6732 11.7654 12.9261 11.7656 12.1104C11.7656 11.2944 11.4603 10.5467 10.96 9.97949C10.8862 9.89591 10.8085 9.81575 10.7266 9.74023L9.37109 11.2109Z\" 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,gBAAy8B,EAAz8B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,w2BAAw2B,KAAK,eAAc,CAAI,GAGn8B",
9
+ "debugId": "D6AA93F2D18FA64564756E2164756E21",
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 v=Object.create;var{getPrototypeOf:V,defineProperty:l,getOwnPropertyNames:i,getOwnPropertyDescriptor:h}=Object,u=Object.prototype.hasOwnProperty;function d(r){return this[r]}var y,F,B=(r,o,t)=>{var n=r!=null&&typeof r==="object";if(n){var m=o?y??=new WeakMap:F??=new WeakMap,s=m.get(r);if(s)return s}t=r!=null?v(V(r)):{};let p=o||!r||!r.__esModule?l(t,"default",{value:r,enumerable:!0}):t;for(let f of i(r))if(!u.call(p,f))l(p,f,{get:d.bind(r,f),enumerable:!0});if(n)m.set(r,p);return p},I=(r)=>{var o=(c??=new WeakMap).get(r),t;if(o)return o;if(o=l({},"__esModule",{value:!0}),r&&typeof r==="object"||typeof r==="function"){for(var n of i(r))if(!u.call(o,n))l(o,n,{get:d.bind(r,n),enumerable:!(t=h(r,n))||t.enumerable})}return c.set(r,o),o},c;var M=(r)=>r;function S(r,o){this[r]=M.bind(null,o)}var x=(r,o)=>{for(var t in o)l(r,t,{get:o[t],enumerable:!0,configurable:!0,set:S.bind(o,t)})};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,...t})=>{return P.default.createElement(g.Svg,{...t,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:()=>H});module.exports=I(b);var e=B(require("react"));var C=require("react-native-svg"),H=(r)=>{return e.default.createElement(a,{...r},e.default.createElement(C.Path,{d:"M22 11C17.0294 11 13 15.0294 13 20H2V11H22Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M22 15C19.2386 15 17 17.2386 17 20H15C15 16.134 18.134 13 22 13V15Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M22 18.5C21.1716 18.5 20.5 19.1716 20.5 20H18.5C18.5 18.067 20.067 16.5 22 16.5V18.5Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M22 9H2V4H22V9Z",fill:"currentColor"}))},w=H;
2
+
3
+ //# debugId=CAB7C5B47BD2E78E64756E2164756E21
@@ -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 20H2V11H22Z\" fill=\"currentColor\"/><Path d=\"M22 15C19.2386 15 17 17.2386 17 20H15C15 16.134 18.134 13 22 13V15Z\" fill=\"currentColor\"/><Path d=\"M22 18.5C21.1716 18.5 20.5 19.1716 20.5 20H18.5C18.5 18.067 20.067 16.5 22 16.5V18.5Z\" fill=\"currentColor\"/><Path d=\"M22 9H2V4H22V9Z\" 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,wBAAgX,EAAhX,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,8CAA8C,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,sEAAsE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,KAAK,eAAc,CAAI,GAG1W",
9
+ "debugId": "CAB7C5B47BD2E78E64756E2164756E21",
10
+ "names": []
11
+ }
@@ -0,0 +1,3 @@
1
+ import C from"react";import{Svg as p}from"react-native-svg";var e=({children:n,size:r=24,...l})=>{return C.createElement(p,{...l,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},n)};import o from"react";import{Path as t}from"react-native-svg";var f=(n)=>{return o.createElement(e,{...n},o.createElement(t,{d:"M22 11C17.0294 11 13 15.0294 13 20H2V11H22Z",fill:"currentColor"}),o.createElement(t,{d:"M22 15C19.2386 15 17 17.2386 17 20H15C15 16.134 18.134 13 22 13V15Z",fill:"currentColor"}),o.createElement(t,{d:"M22 18.5C21.1716 18.5 20.5 19.1716 20.5 20H18.5C18.5 18.067 20.067 16.5 22 16.5V18.5Z",fill:"currentColor"}),o.createElement(t,{d:"M22 9H2V4H22V9Z",fill:"currentColor"}))},P=f;export{P as default,f as IconCreditCardNfc};
2
+
3
+ //# debugId=5A09F2E2657B553064756E2164756E21
@@ -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 20H2V11H22Z\" fill=\"currentColor\"/><Path d=\"M22 15C19.2386 15 17 17.2386 17 20H15C15 16.134 18.134 13 22 13V15Z\" fill=\"currentColor\"/><Path d=\"M22 18.5C21.1716 18.5 20.5 19.1716 20.5 20H18.5C18.5 18.067 20.067 16.5 22 16.5V18.5Z\" fill=\"currentColor\"/><Path d=\"M22 9H2V4H22V9Z\" 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,gBAAgX,EAAhX,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,8CAA8C,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sEAAsE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wFAAwF,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,KAAK,eAAc,CAAI,GAG1W",
9
+ "debugId": "5A09F2E2657B553064756E2164756E21",
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