@central-icons-react-native/round-outlined-radius-2-stroke-1 1.1.305 → 1.1.306
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/IconBanknote2/index.js +2 -2
- package/IconBanknote2/index.js.map +3 -3
- package/IconBanknote2/index.mjs +2 -2
- package/IconBanknote2/index.mjs.map +3 -3
- package/filtered-icons.json +1 -1
- package/icons-index.json +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +1 -1
package/IconBanknote2/index.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
var I=Object.create;var{getPrototypeOf:w,defineProperty:
|
|
1
|
+
var I=Object.create;var{getPrototypeOf:w,defineProperty:u,getOwnPropertyNames:c,getOwnPropertyDescriptor:y}=Object,h=Object.prototype.hasOwnProperty;function f(o){return this[o]}var P,j,x=(o,r,n)=>{var e=o!=null&&typeof o==="object";if(e){var p=r?P??=new WeakMap:j??=new WeakMap,k=p.get(o);if(k)return k}n=o!=null?I(w(o)):{};let a=r||!o||!o.__esModule?u(n,"default",{value:o,enumerable:!0}):n;for(let l of c(o))if(!h.call(a,l))u(a,l,{get:f.bind(o,l),enumerable:!0});if(e)p.set(o,a);return a},L=(o)=>{var r=(C??=new WeakMap).get(o),n;if(r)return r;if(r=u({},"__esModule",{value:!0}),o&&typeof o==="object"||typeof o==="function"){for(var e of c(o))if(!h.call(r,e))u(r,e,{get:f.bind(o,e),enumerable:!(n=y(o,e))||n.enumerable})}return C.set(o,r),r},C;var M=(o)=>o;function v(o,r){this[o]=M.bind(null,r)}var g=(o,r)=>{for(var n in r)u(o,n,{get:r[n],enumerable:!0,configurable:!0,set:v.bind(r,n)})};var S={};g(S,{CentralIconBase:()=>m});module.exports=L(S);var d=x(require("react")),t=require("react-native-svg"),m=({children:o,size:r=24,mode:n="masked",maskId:e,...p})=>{let k=n!=="raw"&&!!e;return d.default.createElement(t.Svg,{...p,width:typeof r==="number"?`${r}px`:r,height:typeof r==="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},k?d.default.createElement(d.default.Fragment,null,d.default.createElement(t.Mask,{id:e,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},d.default.createElement(t.Rect,{width:"24",height:"24",fill:"#000"}),d.default.createElement(t.G,{color:"#fff"},o)),d.default.createElement(t.Rect,{width:"24",height:"24",fill:"currentColor",mask:`url(#${e})`})):o)};var b={};g(b,{default:()=>$,IconBanknote2:()=>B});module.exports=L(b);var s=x(require("react"));var i=require("react-native-svg"),B=s.default.memo((o)=>{return s.default.createElement(m,{...o,maskId:"round-outlined-radius-2-stroke-1-IconBanknote2"},s.default.createElement(i.Circle,{cx:"12",cy:"12",r:"2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(i.Path,{d:"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(i.Path,{d:"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(i.Path,{d:"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(i.Path,{d:"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),s.default.createElement(i.Rect,{x:"2",y:"5",width:"20",height:"14",rx:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),$=B;
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=209ED40F48F8EE8264756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconBanknote2/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path, Rect } from \"react-native-svg\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><Circle cx=\"12\" cy=\"12\" r=\"2.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Rect x=\"2\" y=\"5\" width=\"20\" height=\"14\" rx=\"2\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBanknote2;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,yEChDY,IAAlB,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "w7BAA0B,IAA1B,sBACA,8BAQa,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,wBA8BE,MA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gDACE,wBAUE,OAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,wBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,wBAA4B,IAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,wBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,yEChDY,IAAlB,sBAEmC,IAAnC,8BAEa,EAAkE,UAAM,KAAK,CAAC,IAAU,CACnG,OAAO,wBAAmyB,EAAnyB,IAAqB,EAAO,OAAO,kDAAiD,wBAAC,SAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,6CAA6C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,qDAAqD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,wBAAC,OAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC3yB,EAEc",
|
|
9
|
+
"debugId": "209ED40F48F8EE8264756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/IconBanknote2/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import r from"react";import{Svg as
|
|
1
|
+
import r from"react";import{Svg as a,Mask as l,Rect as i,G as m}from"react-native-svg";var d=({children:e,size:n=24,mode:u="masked",maskId:s,...p})=>{let k=u!=="raw"&&!!s;return r.createElement(a,{...p,width:typeof n==="number"?`${n}px`:n,height:typeof n==="number"?`${n}px`:n,viewBox:"0 0 24 24",fill:"none"},k?r.createElement(r.Fragment,null,r.createElement(l,{id:s,maskUnits:"userSpaceOnUse",x:"0",y:"0",width:"24",height:"24"},r.createElement(i,{width:"24",height:"24",fill:"#000"}),r.createElement(m,{color:"#fff"},e)),r.createElement(i,{width:"24",height:"24",fill:"currentColor",mask:`url(#${s})`})):e)};import o from"react";import{Circle as C,Path as t,Rect as c}from"react-native-svg";var h=o.memo((e)=>{return o.createElement(d,{...e,maskId:"round-outlined-radius-2-stroke-1-IconBanknote2"},o.createElement(C,{cx:"12",cy:"12",r:"2.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(t,{d:"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}),o.createElement(c,{x:"2",y:"5",width:"20",height:"14",rx:"2",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round"}))}),j=h;export{j as default,h as IconBanknote2};
|
|
2
2
|
|
|
3
|
-
//# debugId=
|
|
3
|
+
//# debugId=B556205D4D3B3D8164756E2164756E21
|
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
"sources": ["src/CentralIconBase/index.tsx", "src/IconBanknote2/index.tsx"],
|
|
4
4
|
"sourcesContent": [
|
|
5
5
|
"import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n size?: string | number;\n mode?: \"masked\" | \"raw\";\n maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n children,\n size = 24,\n mode = \"masked\",\n maskId,\n ...props\n}) => {\n const masked = mode !== \"raw\" && !!maskId;\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 {masked ? (\n <>\n <Mask\n id={maskId}\n maskUnits=\"userSpaceOnUse\"\n x=\"0\"\n y=\"0\"\n width=\"24\"\n height=\"24\"\n >\n <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n <G color=\"#fff\">{children}</G>\n </Mask>\n <Rect\n width=\"24\"\n height=\"24\"\n fill=\"currentColor\"\n mask={`url(#${maskId})`}\n />\n </>\n ) : (\n children\n )}\n </Svg>\n );\n};\n",
|
|
6
|
-
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path } from \"react-native-svg\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><
|
|
6
|
+
"import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Circle, Path, Rect } from \"react-native-svg\";\n\nexport const IconBanknote2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n return <CentralIconBase {...props} maskId=\"round-outlined-radius-2-stroke-1-IconBanknote2\"><Circle cx=\"12\" cy=\"12\" r=\"2.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.75 5.25C5.75 7.183 4.183 8.75 2.25 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18.25 5.25C18.25 7.183 19.817 8.75 21.75 8.75\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M5.75 18.75C5.75 16.817 4.183 15.25 2.25 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Path d=\"M18.25 18.75C18.25 16.817 19.817 15.25 21.75 15.25\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/><Rect x=\"2\" y=\"5\" width=\"20\" height=\"14\" rx=\"2\" stroke=\"currentColor\" strokeLinecap=\"round\" strokeLinejoin=\"round\"/></CentralIconBase>;\n});\n\nexport default IconBanknote2;\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,iBAAS,UAAQ,
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,iBAAS,UAAQ,UAAM,yBAEhB,IAAM,EAAkE,EAAM,KAAK,CAAC,IAAU,CACnG,OAAO,gBAAmyB,EAAnyB,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAQ,GAAG,KAAK,GAAG,KAAK,EAAE,OAAO,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,6CAA6C,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,iDAAiD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,qDAAqD,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,EAAE,gBAAC,EAAD,CAAM,EAAE,IAAI,EAAE,IAAI,MAAM,KAAK,OAAO,KAAK,GAAG,IAAI,OAAO,eAAe,cAAc,QAAQ,eAAe,QAAO,CAAI,EAC3yB,EAEc",
|
|
9
|
+
"debugId": "B556205D4D3B3D8164756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|