@central-icons-react-native/round-filled-radius-1-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.
- package/IconCardNfc/index.d.ts +4 -0
- package/IconCardNfc/index.js +3 -0
- package/IconCardNfc/index.js.map +11 -0
- package/IconCardNfc/index.mjs +3 -0
- package/IconCardNfc/index.mjs.map +11 -0
- package/README.md +1 -0
- package/filtered-icons.json +1 -1
- package/icons/index.d.ts +1 -1
- package/icons/index.js +2 -2
- package/icons/index.js.map +3 -3
- package/icons/index.mjs +2 -2
- package/icons/index.mjs.map +3 -3
- package/icons-index.json +4 -4
- package/index.d.ts +1 -0
- package/index.js +3 -0
- package/index.mjs +1 -0
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
|
@@ -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:"M20 4C21.1046 4 22 4.89543 22 6V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V6C2 4.89543 2.89543 4 4 4H20ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z",fill:"currentColor"}))},V=g;
|
|
2
|
+
|
|
3
|
+
//# debugId=1E5886FE34591B7764756E2164756E21
|
|
@@ -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=\"M20 4C21.1046 4 22 4.89543 22 6V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V6C2 4.89543 2.89543 4 4 4H20ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z\" 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,wBAAu/B,EAAv/B,IAAqB,GAAO,wBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s5BAAs5B,KAAK,eAAc,CAAI,GAGj/B",
|
|
9
|
+
"debugId": "1E5886FE34591B7764756E2164756E21",
|
|
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:"M20 4C21.1046 4 22 4.89543 22 6V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V6C2 4.89543 2.89543 4 4 4H20ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z",fill:"currentColor"}))},x=a;export{x as default,a as IconCardNfc};
|
|
2
|
+
|
|
3
|
+
//# debugId=832DFD421FCA187064756E2164756E21
|
|
@@ -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=\"M20 4C21.1046 4 22 4.89543 22 6V18C22 19.1046 21.1046 20 20 20H4C2.89543 20 2 19.1046 2 18V6C2 4.89543 2.89543 4 4 4H20ZM13.5781 8.17676C13.2361 7.74317 12.6074 7.66881 12.1738 8.01074C11.7405 8.35279 11.6659 8.9815 12.0078 9.41504C12.6072 10.1751 12.9648 11.1338 12.9648 12.1777C12.9646 13.2215 12.6072 14.1796 12.0078 14.9395C11.666 15.3731 11.7403 16.0018 12.1738 16.3438C12.6073 16.6855 13.2361 16.611 13.5781 16.1777C14.4458 15.0776 14.9646 13.6867 14.9648 12.1777C14.9648 10.6686 14.4459 9.27703 13.5781 8.17676ZM10.6982 9.82617C10.2949 9.44921 9.66231 9.47076 9.28516 9.87402C8.90845 10.2774 8.92983 10.91 9.33301 11.2871C9.57195 11.5108 9.71875 11.8266 9.71875 12.1777C9.71858 12.5288 9.57202 12.8447 9.33301 13.0684C8.92994 13.4456 8.90815 14.0782 9.28516 14.4814C9.66223 14.8843 10.2949 14.9058 10.6982 14.5293C11.3248 13.9433 11.7186 13.1053 11.7188 12.1777C11.7188 11.25 11.3248 10.4123 10.6982 9.82617Z\" 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,gBAAu/B,EAAv/B,IAAqB,GAAO,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,s5BAAs5B,KAAK,eAAc,CAAI,GAGj/B",
|
|
9
|
+
"debugId": "832DFD421FCA187064756E2164756E21",
|
|
10
|
+
"names": []
|
|
11
|
+
}
|