@central-icons-react-native/square-filled-radius-0-stroke-2 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 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
+ }
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