@central-icons-react-native/square-filled-radius-0-stroke-1 1.1.267 → 1.1.268
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/IconCreditCardNfc/index.d.ts +4 -0
- package/IconCreditCardNfc/index.js +3 -0
- package/IconCreditCardNfc/index.js.map +11 -0
- package/IconCreditCardNfc/index.mjs +3 -0
- package/IconCreditCardNfc/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 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
|
+
}
|