@central-icons-react-native/square-outlined-radius-0-stroke-1 1.1.245 → 1.1.246
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/IconPiggyBankCoin/index.d.ts +4 -0
- package/IconPiggyBankCoin/index.js +2 -0
- package/IconPiggyBankCoin/index.js.map +1 -0
- package/IconPiggyBankCoin/index.mjs +2 -0
- package/IconPiggyBankCoin/index.mjs.map +1 -0
- package/README.md +1 -0
- package/filtered-icons.json +14 -0
- package/icons/index.d.ts +1 -0
- package/icons-index.json +5 -3
- package/index.d.ts +1 -0
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/index.mjs +1 -1
- package/index.mjs.map +1 -1
- package/license-check.js +1 -1
- package/package.json +1 -1
- package/skills/central-icons-react-native/SKILL.md +2 -1
- package/tsx-icons.json +7 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var u=Object.create;var C=Object.defineProperty;var B=Object.getOwnPropertyDescriptor;var g=Object.getOwnPropertyNames;var I=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var x=(r,o)=>{for(var t in o)C(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,l)=>{if(o&&typeof o=="object"||typeof o=="function")for(let n of g(o))!P.call(r,n)&&n!==t&&C(r,n,{get:()=>o[n],enumerable:!(l=B(o,n))||l.enumerable});return r};var s=(r,o,t)=>(t=r!=null?u(I(r)):{},a(o||!r||!r.__esModule?C(t,"default",{value:r,enumerable:!0}):t,r)),d=r=>a(C({},"__esModule",{value:!0}),r);var y={};x(y,{IconPiggyBankCoin:()=>i,default:()=>v});module.exports=d(y);var e=s(require("react"));var m=s(require("react")),c=require("react-native-svg"),f=({children:r,size:o=24,...t})=>m.default.createElement(c.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 p=require("react-native-svg"),i=r=>e.default.createElement(f,{...r},e.default.createElement(p.Path,{d:"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z",stroke:"currentColor"}),e.default.createElement(p.Path,{d:"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z",fill:"currentColor"}),e.default.createElement(p.Path,{d:"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087",stroke:"currentColor"})),v=i;0&&(module.exports={IconPiggyBankCoin});
|
|
2
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPiggyBankCoin/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPiggyBankCoin: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBankCoin;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"0jBAAA,IAAAA,EAAA,GAAAC,EAAAD,EAAA,uBAAAE,EAAA,YAAAC,IAAA,eAAAC,EAAAJ,GAAA,IAAAK,EAA0B,oBCA1B,IAAAC,EAA0B,oBAC1BC,EAA8B,4BAMjBC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEI,EAAAC,QAAA,cAAC,OACE,GAAGD,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,IAAAI,EAAqB,4BAERC,EAA+CC,GAExD,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,2PACF,OAAO,eACT,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,kJACF,KAAK,eACP,EACA,EAAAA,QAAA,cAAC,QACC,EAAE,8HACF,OAAO,eACT,CACF,EAIGE,EAAQJ","names":["IconPiggyBankCoin_exports","__export","IconPiggyBankCoin","IconPiggyBankCoin_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconPiggyBankCoin","props","React","CentralIconBase","IconPiggyBankCoin_default"]}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import o from"react";import p from"react";import{Svg as l}from"react-native-svg";var e=({children:t,size:r=24,...C})=>p.createElement(l,{...C,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},t);import{Path as n}from"react-native-svg";var a=t=>o.createElement(e,{...t},o.createElement(n,{d:"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z",stroke:"currentColor"}),o.createElement(n,{d:"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z",fill:"currentColor"}),o.createElement(n,{d:"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087",stroke:"currentColor"})),P=a;export{a as IconPiggyBankCoin,P as default};
|
|
2
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/IconPiggyBankCoin/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconPiggyBankCoin: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z\"\n stroke=\"currentColor\"\n />\n <Path\n d=\"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z\"\n fill=\"currentColor\"\n />\n <Path\n d=\"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087\"\n stroke=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconPiggyBankCoin;\n","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<CentralIconBaseProps> = ({\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"],"mappings":"AAAA,OAAOA,MAAmB,QCA1B,OAAOC,MAAmB,QAC1B,OAAS,OAAAC,MAAqB,mBAMvB,IAAMC,EAA4C,CAAC,CACxD,SAAAC,EACA,KAAAC,EAAO,GACP,GAAGC,CACL,IAEIL,EAAA,cAACC,EAAA,CACE,GAAGI,EACJ,MAAO,OAAOD,GAAS,SAAW,GAAGA,CAAI,KAAOA,EAChD,OAAQ,OAAOA,GAAS,SAAW,GAAGA,CAAI,KAAOA,EACjD,QAAQ,YACR,KAAK,QAEJD,CACH,EDnBJ,OAAS,QAAAG,MAAY,mBAEd,IAAMC,EAA+CC,GAExDC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,2PACF,OAAO,eACT,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,kJACF,KAAK,eACP,EACAG,EAAA,cAACH,EAAA,CACC,EAAE,8HACF,OAAO,eACT,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconPiggyBankCoin","props","React","CentralIconBase","IconPiggyBankCoin_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -19502,6 +19502,20 @@
|
|
|
19502
19502
|
"packageName": "square-outlined-radius-0-stroke-1",
|
|
19503
19503
|
"componentName": "IconPiggyBank"
|
|
19504
19504
|
},
|
|
19505
|
+
{
|
|
19506
|
+
"category": "Things",
|
|
19507
|
+
"svg": "<path d=\"M9.25 20.5H5.64013C1.41022 15.6897 0.881166 7.13793 7.63317 7.13793H12.5127C14.0336 5.90784 15.2485 5 17.2707 5C17.2707 8.02155 18.7587 9.65197 21.5 10.3448V15.1552C18.6399 15.8781 17 17.6103 17 20.5L13.25 20.5L12.75 18.8966L9.75 18.8966L9.25 20.5Z\" stroke=\"currentColor\"/><path d=\"M17 10.75C17 11.3023 16.5523 11.75 16 11.75C15.4477 11.75 15 11.3023 15 10.75C15 10.1977 15.4477 9.75 16 9.75C16.5523 9.75 17 10.1977 17 10.75Z\" fill=\"currentColor\"/><path d=\"M7.90675 7C7.80498 6.68497 7.75 6.3489 7.75 6C7.75 4.20507 9.20507 2.75 11 2.75C12.7145 2.75 14.1189 4.0776 14.2413 5.76087\" stroke=\"currentColor\"/>",
|
|
19508
|
+
"iconName": "piggy-bank-coin, money, cashback, savings",
|
|
19509
|
+
"variant": {
|
|
19510
|
+
"join": "square",
|
|
19511
|
+
"filled": "off",
|
|
19512
|
+
"radius": "0",
|
|
19513
|
+
"stroke": "1"
|
|
19514
|
+
},
|
|
19515
|
+
"createdAt": "2026-05-22T11:02:18.919122+00:00",
|
|
19516
|
+
"packageName": "square-outlined-radius-0-stroke-1",
|
|
19517
|
+
"componentName": "IconPiggyBankCoin"
|
|
19518
|
+
},
|
|
19505
19519
|
{
|
|
19506
19520
|
"category": "Things",
|
|
19507
19521
|
"svg": "<path d=\"M6.34623 4.41419C5.965 3.86171 5.33002 3.5 4.61111 3.5C3.44518 3.5 2.5 4.45139 2.5 5.625C2.5 6.31388 2.82566 6.9262 3.33046 7.31449C2.92213 8.6933 2.5 10.485 2.5 12C2.5 13.515 2.92213 15.3067 3.33046 16.6855C2.82566 17.0738 2.5 17.6861 2.5 18.375C2.5 19.5486 3.44518 20.5 4.61111 20.5C5.32752 20.5 5.96058 20.1408 6.34224 19.5916C7.94824 20.0235 10.1413 20.5 12 20.5C13.8587 20.5 16.0518 20.0235 17.6578 19.5916C18.0395 20.1408 18.6725 20.5 19.3889 20.5C20.5549 20.5 21.5001 19.5486 21.5001 18.375C21.5001 17.6861 21.1744 17.0738 20.6695 16.6855C21.0779 15.3067 21.5 13.5149 21.5 12C21.5 10.485 21.0779 8.6933 20.6695 7.31449C21.1743 6.9262 21.5 6.31388 21.5 5.625C21.5 4.45139 20.5548 3.5 19.3889 3.5C18.67 3.5 18.035 3.86171 17.6538 4.41419C16.0337 3.98077 13.8253 3.5 12 3.5C10.1747 3.5 7.96627 3.98077 6.34623 4.41419Z\" stroke=\"currentColor\"/>",
|
package/icons/index.d.ts
CHANGED
package/icons-index.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "@central-icons-react-native/square-outlined-radius-0-stroke-1",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.246",
|
|
4
4
|
"style": "square-outlined-radius-0-stroke-1",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/square-outlined-radius-0-stroke-1/IconHome';",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"withProps": "<IconHome size={32} color=\"#007AFF\" />",
|
|
12
12
|
"central": "<CentralIcon name=\"IconHome\" size={24} color=\"currentColor\" />"
|
|
13
13
|
},
|
|
14
|
-
"totalIcons":
|
|
14
|
+
"totalIcons": 2014,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 88,
|
|
@@ -1870,7 +1870,7 @@
|
|
|
1870
1870
|
]
|
|
1871
1871
|
},
|
|
1872
1872
|
"Things": {
|
|
1873
|
-
"count":
|
|
1873
|
+
"count": 138,
|
|
1874
1874
|
"icons": [
|
|
1875
1875
|
"IconAnvil",
|
|
1876
1876
|
"IconApps",
|
|
@@ -1949,6 +1949,7 @@
|
|
|
1949
1949
|
"IconPeace",
|
|
1950
1950
|
"IconPets",
|
|
1951
1951
|
"IconPiggyBank",
|
|
1952
|
+
"IconPiggyBankCoin",
|
|
1952
1953
|
"IconPillow",
|
|
1953
1954
|
"IconPillowZz",
|
|
1954
1955
|
"IconPilone",
|
|
@@ -3612,6 +3613,7 @@
|
|
|
3612
3613
|
"IconPieChart2": "pie-chart-2, graph, chart, statistics",
|
|
3613
3614
|
"IconPieChart3": "pie-chart-3, graph, statistics",
|
|
3614
3615
|
"IconPiggyBank": "piggy-bank, save-money",
|
|
3616
|
+
"IconPiggyBankCoin": "piggy-bank-coin, money, cashback, savings",
|
|
3615
3617
|
"IconPillow": "pillow, sleep, snooze",
|
|
3616
3618
|
"IconPillowZz": "pillow-zz, sleep, snooze",
|
|
3617
3619
|
"IconPilone": "pilone, maintenance",
|
package/index.d.ts
CHANGED
|
@@ -1391,6 +1391,7 @@ export { IconPieChart1, default as IconPieChart1Default, } from "./IconPieChart1
|
|
|
1391
1391
|
export { IconPieChart2, default as IconPieChart2Default, } from "./IconPieChart2";
|
|
1392
1392
|
export { IconPieChart3, default as IconPieChart3Default, } from "./IconPieChart3";
|
|
1393
1393
|
export { IconPiggyBank, default as IconPiggyBankDefault, } from "./IconPiggyBank";
|
|
1394
|
+
export { IconPiggyBankCoin, default as IconPiggyBankCoinDefault, } from "./IconPiggyBankCoin";
|
|
1394
1395
|
export { IconPillow, default as IconPillowDefault } from "./IconPillow";
|
|
1395
1396
|
export { IconPillowZz, default as IconPillowZzDefault } from "./IconPillowZz";
|
|
1396
1397
|
export { IconPilone, default as IconPiloneDefault } from "./IconPilone";
|