@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.268 → 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
+ }
package/README.md CHANGED
@@ -1676,6 +1676,7 @@ Below is a complete list of available icons:
1676
1676
  - IconCurrencyLira
1677
1677
  - Icon3dPackage2
1678
1678
  - IconCreditCardNfc
1679
+ - IconCardNfc
1679
1680
 
1680
1681
  ### Social Media & Brands
1681
1682