@central-icons-react-native/square-filled-radius-0-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 L=Object.create;var{getPrototypeOf:h,defineProperty:C,getOwnPropertyNames:s,getOwnPropertyDescriptor:y}=Object,i=Object.prototype.hasOwnProperty;function u(r){return this[r]}var F,S,d=(r,o,e)=>{var t=r!=null&&typeof r==="object";if(t){var m=o?F??=new WeakMap:S??=new WeakMap,c=m.get(r);if(c)return c}e=r!=null?L(h(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=y(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.7959 8.60938C11.9121 8.71738 12.0239 8.83122 12.1289 8.9502C12.8718 9.79261 13.3223 10.8989 13.3223 12.1104C13.322 13.3216 12.8719 14.4273 12.1289 15.2695C12.0238 15.3886 11.9122 15.5023 11.7959 15.6104L12.4775 16.3428C12.6179 16.2122 12.7521 16.0745 12.8789 15.9307C13.7767 14.9128 14.322 13.5744 14.3223 12.1104C14.3223 10.6461 13.7768 9.30713 12.8789 8.28906C12.7521 8.14531 12.6179 8.00744 12.4775 7.87695L11.7959 8.60938ZM9.70996 10.8438C9.75386 10.8842 9.79644 10.9269 9.83594 10.9717C10.1037 11.2754 10.2656 11.6737 10.2656 12.1104C10.2654 12.5467 10.1035 12.9445 9.83594 13.248C9.79645 13.2928 9.75384 13.3365 9.70996 13.377L10.0488 13.7441L10.3877 14.1123C10.4568 14.0486 10.5228 13.9806 10.585 13.9102C11.0077 13.4309 11.2654 12.7996 11.2656 12.1104C11.2656 11.4208 11.0078 10.789 10.585 10.3096C10.5227 10.239 10.4569 10.1712 10.3877 10.1074L9.70996 10.8438Z",fill:"currentColor"}))},H=g;
2
+
3
+ //# debugId=290F917FE2C1EE3864756E2164756E21
@@ -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.7959 8.60938C11.9121 8.71738 12.0239 8.83122 12.1289 8.9502C12.8718 9.79261 13.3223 10.8989 13.3223 12.1104C13.322 13.3216 12.8719 14.4273 12.1289 15.2695C12.0238 15.3886 11.9122 15.5023 11.7959 15.6104L12.4775 16.3428C12.6179 16.2122 12.7521 16.0745 12.8789 15.9307C13.7767 14.9128 14.322 13.5744 14.3223 12.1104C14.3223 10.6461 13.7768 9.30713 12.8789 8.28906C12.7521 8.14531 12.6179 8.00744 12.4775 7.87695L11.7959 8.60938ZM9.70996 10.8438C9.75386 10.8842 9.79644 10.9269 9.83594 10.9717C10.1037 11.2754 10.2656 11.6737 10.2656 12.1104C10.2654 12.5467 10.1035 12.9445 9.83594 13.248C9.79645 13.2928 9.75384 13.3365 9.70996 13.377L10.0488 13.7441L10.3877 14.1123C10.4568 14.0486 10.5228 13.9806 10.585 13.9102C11.0077 13.4309 11.2654 12.7996 11.2656 12.1104C11.2656 11.4208 11.0078 10.789 10.585 10.3096C10.5227 10.239 10.4569 10.1712 10.3877 10.1074L9.70996 10.8438Z\" 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,wBAA89B,EAA99B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,63BAA63B,KAAK,eAAc,CAAI,GAGx9B",
9
+ "debugId": "290F917FE2C1EE3864756E2164756E21",
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.7959 8.60938C11.9121 8.71738 12.0239 8.83122 12.1289 8.9502C12.8718 9.79261 13.3223 10.8989 13.3223 12.1104C13.322 13.3216 12.8719 14.4273 12.1289 15.2695C12.0238 15.3886 11.9122 15.5023 11.7959 15.6104L12.4775 16.3428C12.6179 16.2122 12.7521 16.0745 12.8789 15.9307C13.7767 14.9128 14.322 13.5744 14.3223 12.1104C14.3223 10.6461 13.7768 9.30713 12.8789 8.28906C12.7521 8.14531 12.6179 8.00744 12.4775 7.87695L11.7959 8.60938ZM9.70996 10.8438C9.75386 10.8842 9.79644 10.9269 9.83594 10.9717C10.1037 11.2754 10.2656 11.6737 10.2656 12.1104C10.2654 12.5467 10.1035 12.9445 9.83594 13.248C9.79645 13.2928 9.75384 13.3365 9.70996 13.377L10.0488 13.7441L10.3877 14.1123C10.4568 14.0486 10.5228 13.9806 10.585 13.9102C11.0077 13.4309 11.2654 12.7996 11.2656 12.1104C11.2656 11.4208 11.0078 10.789 10.585 10.3096C10.5227 10.239 10.4569 10.1712 10.3877 10.1074L9.70996 10.8438Z",fill:"currentColor"}))},x=a;export{x as default,a as IconCardNfc};
2
+
3
+ //# debugId=A0B3237E04B210C064756E2164756E21
@@ -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.7959 8.60938C11.9121 8.71738 12.0239 8.83122 12.1289 8.9502C12.8718 9.79261 13.3223 10.8989 13.3223 12.1104C13.322 13.3216 12.8719 14.4273 12.1289 15.2695C12.0238 15.3886 11.9122 15.5023 11.7959 15.6104L12.4775 16.3428C12.6179 16.2122 12.7521 16.0745 12.8789 15.9307C13.7767 14.9128 14.322 13.5744 14.3223 12.1104C14.3223 10.6461 13.7768 9.30713 12.8789 8.28906C12.7521 8.14531 12.6179 8.00744 12.4775 7.87695L11.7959 8.60938ZM9.70996 10.8438C9.75386 10.8842 9.79644 10.9269 9.83594 10.9717C10.1037 11.2754 10.2656 11.6737 10.2656 12.1104C10.2654 12.5467 10.1035 12.9445 9.83594 13.248C9.79645 13.2928 9.75384 13.3365 9.70996 13.377L10.0488 13.7441L10.3877 14.1123C10.4568 14.0486 10.5228 13.9806 10.585 13.9102C11.0077 13.4309 11.2654 12.7996 11.2656 12.1104C11.2656 11.4208 11.0078 10.789 10.585 10.3096C10.5227 10.239 10.4569 10.1712 10.3877 10.1074L9.70996 10.8438Z\" 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,gBAA89B,EAA99B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,63BAA63B,KAAK,eAAc,CAAI,GAGx9B",
9
+ "debugId": "A0B3237E04B210C064756E2164756E21",
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 10.5C16.7533 10.5 12.5 14.7533 12.5 20H2V10H22V10.5Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M22 13.5C18.4101 13.5 15.5 16.4101 15.5 20H14.5C14.5 15.8579 17.8579 12.5 22 12.5V13.5Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M22 17C20.3431 17 19 18.3431 19 20H18C18 17.7909 19.7909 16 22 16V17Z",fill:"currentColor"}),e.default.createElement(C.Path,{d:"M22 9H2V4H22V9Z",fill:"currentColor"}))},w=H;
2
+
3
+ //# debugId=2D553ED86177E78A64756E2164756E21
@@ -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 20H2V10H22V10.5Z\" fill=\"currentColor\"/><Path d=\"M22 13.5C18.4101 13.5 15.5 16.4101 15.5 20H14.5C14.5 15.8579 17.8579 12.5 22 12.5V13.5Z\" fill=\"currentColor\"/><Path d=\"M22 17C20.3431 17 19 18.3431 19 20H18C18 17.7909 19.7909 16 22 16V17Z\" 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,wBAAiY,EAAjY,IAAqB,GAAO,wBAAC,OAAD,CAAM,EAAE,2DAA2D,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,EAAE,wBAAC,OAAD,CAAM,EAAE,kBAAkB,KAAK,eAAc,CAAI,GAG3X",
9
+ "debugId": "2D553ED86177E78A64756E2164756E21",
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 10.5C16.7533 10.5 12.5 14.7533 12.5 20H2V10H22V10.5Z",fill:"currentColor"}),o.createElement(t,{d:"M22 13.5C18.4101 13.5 15.5 16.4101 15.5 20H14.5C14.5 15.8579 17.8579 12.5 22 12.5V13.5Z",fill:"currentColor"}),o.createElement(t,{d:"M22 17C20.3431 17 19 18.3431 19 20H18C18 17.7909 19.7909 16 22 16V17Z",fill:"currentColor"}),o.createElement(t,{d:"M22 9H2V4H22V9Z",fill:"currentColor"}))},P=f;export{P as default,f as IconCreditCardNfc};
2
+
3
+ //# debugId=CF80013C7149556164756E2164756E21
@@ -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 20H2V10H22V10.5Z\" fill=\"currentColor\"/><Path d=\"M22 13.5C18.4101 13.5 15.5 16.4101 15.5 20H14.5C14.5 15.8579 17.8579 12.5 22 12.5V13.5Z\" fill=\"currentColor\"/><Path d=\"M22 17C20.3431 17 19 18.3431 19 20H18C18 17.7909 19.7909 16 22 16V17Z\" 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,gBAAiY,EAAjY,IAAqB,GAAO,gBAAC,EAAD,CAAM,EAAE,2DAA2D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0FAA0F,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wEAAwE,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kBAAkB,KAAK,eAAc,CAAI,GAG3X",
9
+ "debugId": "CF80013C7149556164756E2164756E21",
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