@central-icons-react-native/round-filled-radius-0-stroke-2 1.1.29 → 1.1.30
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/IconDia/index.js +1 -1
- package/IconDia/index.js.map +1 -1
- package/IconDia/index.mjs +1 -1
- package/IconDia/index.mjs.map +1 -1
- package/README.md +0 -1
- package/filtered-icons.json +1 -15
- package/icons/index.d.ts +0 -1
- package/icons-index.json +3 -5
- package/index.d.ts +0 -1
- 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/tsx-icons.json +2 -9
- package/IconReceiptCheck2/index.d.ts +0 -4
- package/IconReceiptCheck2/index.js +0 -2
- package/IconReceiptCheck2/index.js.map +0 -1
- package/IconReceiptCheck2/index.mjs +0 -2
- package/IconReceiptCheck2/index.mjs.map +0 -1
package/IconDia/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var
|
|
1
|
+
"use strict";var B=Object.create;var n=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var x=Object.getPrototypeOf,P=Object.prototype.hasOwnProperty;var g=(r,o)=>{for(var t in o)n(r,t,{get:o[t],enumerable:!0})},a=(r,o,t,p)=>{if(o&&typeof o=="object"||typeof o=="function")for(let e of u(o))!P.call(r,e)&&e!==t&&n(r,e,{get:()=>o[e],enumerable:!(p=I(o,e))||p.enumerable});return r};var l=(r,o,t)=>(t=r!=null?B(x(r)):{},a(o||!r||!r.__esModule?n(t,"default",{value:r,enumerable:!0}):t,r)),v=r=>a(n({},"__esModule",{value:!0}),r);var y={};g(y,{IconDia:()=>i,default:()=>h});module.exports=v(y);var C=l(require("react"));var m=l(require("react")),s=require("react-native-svg"),c=({children:r,size:o=24,...t})=>m.default.createElement(s.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 f=require("react-native-svg"),i=r=>C.default.createElement(c,{...r},C.default.createElement(f.Path,{d:"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z",fill:"currentColor"})),h=i;0&&(module.exports={IconDia});
|
|
2
2
|
//# sourceMappingURL=index.js.map
|
package/IconDia/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconDia/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconDia/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 IconDia: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDia;\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,aAAAE,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,EAAqCC,GAE9C,EAAAC,QAAA,cAACC,EAAA,CAAiB,GAAGF,GACnB,EAAAC,QAAA,cAAC,QACC,EAAE,ieACF,KAAK,eACP,CACF,EAIGE,EAAQJ","names":["IconDia_exports","__export","IconDia","IconDia_default","__toCommonJS","import_react","import_react","import_react_native_svg","CentralIconBase","children","size","props","React","import_react_native_svg","IconDia","props","React","CentralIconBase","IconDia_default"]}
|
package/IconDia/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import
|
|
1
|
+
import e from"react";import C from"react";import{Svg as p}from"react-native-svg";var t=({children:o,size:r=24,...n})=>C.createElement(p,{...n,width:typeof r=="number"?`${r}px`:r,height:typeof r=="number"?`${r}px`:r,viewBox:"0 0 24 24",fill:"none"},o);import{Path as a}from"react-native-svg";var l=o=>e.createElement(t,{...o},e.createElement(a,{d:"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z",fill:"currentColor"})),P=l;export{l as IconDia,P as default};
|
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
package/IconDia/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/IconDia/index.tsx","../src/CentralIconBase/index.tsx"],"sourcesContent":["import React, { FC } from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path
|
|
1
|
+
{"version":3,"sources":["../src/IconDia/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 IconDia: FC<CentralIconBaseProps> = (props) => {\n return (\n <CentralIconBase {...props}>\n <Path\n d=\"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z\"\n fill=\"currentColor\"\n />\n </CentralIconBase>\n );\n};\n\nexport default IconDia;\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,EAAqCC,GAE9CC,EAAA,cAACC,EAAA,CAAiB,GAAGF,GACnBC,EAAA,cAACH,EAAA,CACC,EAAE,ieACF,KAAK,eACP,CACF,EAIGK,EAAQJ","names":["React","React","Svg","CentralIconBase","children","size","props","Path","IconDia","props","React","CentralIconBase","IconDia_default"]}
|
package/README.md
CHANGED
package/filtered-icons.json
CHANGED
|
@@ -7618,7 +7618,7 @@
|
|
|
7618
7618
|
},
|
|
7619
7619
|
{
|
|
7620
7620
|
"category": "Social Media & Brands",
|
|
7621
|
-
"svg": "<
|
|
7621
|
+
"svg": "<path d=\"M12 2.70358C12.2518 2.70355 12.5058 2.71207 12.7613 2.72964C18.0971 3.09701 22.4035 7.44413 22.7306 12.7839C22.8815 15.2705 22.1449 17.5893 20.7928 19.5992C20.3771 20.2173 19.554 20.3586 18.8712 20.0609C16.7569 19.139 14.3784 18.4064 12 18.4377C9.62158 18.4064 7.24311 19.1391 5.12881 20.0609C4.44602 20.3586 3.62294 20.2173 3.20718 19.5992C1.85505 17.5893 1.1185 15.2705 1.26942 12.7839C1.59648 7.4441 5.90288 3.09695 11.2387 2.72964C11.4942 2.71207 11.7482 2.70355 12 2.70358Z\" fill=\"currentColor\"/>",
|
|
7622
7622
|
"iconName": "dia",
|
|
7623
7623
|
"variant": {
|
|
7624
7624
|
"join": "round",
|
|
@@ -16072,20 +16072,6 @@
|
|
|
16072
16072
|
"packageName": "round-filled-radius-0-stroke-2",
|
|
16073
16073
|
"componentName": "IconReceiptCheck"
|
|
16074
16074
|
},
|
|
16075
|
-
{
|
|
16076
|
-
"category": "Shopping & Payment",
|
|
16077
|
-
"svg": "<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5 2C4.44772 2 4 2.44772 4 3V21C4 21.3905 4.22734 21.7453 4.58214 21.9085C4.93694 22.0717 5.35428 22.0134 5.65079 21.7593L7.33333 20.3171L9.01587 21.7593C9.39036 22.0802 9.94297 22.0802 10.3175 21.7593L12 20.3171L13.6825 21.7593C14.057 22.0802 14.6096 22.0802 14.9841 21.7593L16.6667 20.3171L18.3492 21.7593C18.6457 22.0134 19.0631 22.0717 19.4179 21.9085C19.7727 21.7453 20 21.3905 20 21V3C20 2.44772 19.5523 2 19 2H5ZM8 15C8 14.4477 8.44771 14 9 14H15C15.5523 14 16 14.4477 16 15C16 15.5523 15.5523 16 15 16H9C8.44771 16 8 15.5523 8 15ZM15.2071 8.70711C15.5976 8.31658 15.5976 7.68342 15.2071 7.29289C14.8166 6.90237 14.1834 6.90237 13.7929 7.29289L11.5 9.58578L10.7071 8.79289C10.3166 8.40236 9.68342 8.40236 9.29289 8.79289C8.90237 9.18341 8.90237 9.81658 9.29289 10.2071L10.7929 11.7071C10.9804 11.8946 11.2348 12 11.5 12C11.7652 12 12.0196 11.8946 12.2071 11.7071L15.2071 8.70711Z\" fill=\"currentColor\"/>",
|
|
16078
|
-
"iconName": "receipt-check-2, ticket",
|
|
16079
|
-
"variant": {
|
|
16080
|
-
"join": "round",
|
|
16081
|
-
"filled": "on",
|
|
16082
|
-
"radius": "0",
|
|
16083
|
-
"stroke": "2"
|
|
16084
|
-
},
|
|
16085
|
-
"createdAt": "2025-02-15T21:11:33.829321+00:00",
|
|
16086
|
-
"packageName": "round-filled-radius-0-stroke-2",
|
|
16087
|
-
"componentName": "IconReceiptCheck2"
|
|
16088
|
-
},
|
|
16089
16075
|
{
|
|
16090
16076
|
"category": "Things",
|
|
16091
16077
|
"svg": "<path d=\"M11.002 5V6.05356C6.44611 6.54773 3 10.4216 3 16V17C3 17.5523 3.44772 18 4 18H11.002V19H4C3.44772 19 3 19.4477 3 20C3 20.5523 3.44772 21 4 21H20C20.5523 21 21 20.5523 21 20C21 19.4477 20.5523 19 20 19H13.002V18H20C20.5523 18 21 17.5523 21 17V16C21 10.4232 17.5559 6.54994 13.002 6.05398V5H14.002C14.5542 5 15.002 4.55228 15.002 4C15.002 3.44772 14.5542 3 14.002 3H10.002C9.44967 3 9.00195 3.44772 9.00195 4C9.00195 4.55228 9.44967 5 10.002 5H11.002Z\" fill=\"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/round-filled-radius-0-stroke-2",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.30",
|
|
4
4
|
"style": "round-filled-radius-0-stroke-2",
|
|
5
5
|
"importExamples": {
|
|
6
6
|
"individual": "import { IconHome } from '@central-icons-react-native/round-filled-radius-0-stroke-2/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": 1562,
|
|
15
15
|
"categories": {
|
|
16
16
|
"AI & Magic": {
|
|
17
17
|
"count": 44,
|
|
@@ -1176,7 +1176,7 @@
|
|
|
1176
1176
|
]
|
|
1177
1177
|
},
|
|
1178
1178
|
"Shopping & Payment": {
|
|
1179
|
-
"count":
|
|
1179
|
+
"count": 69,
|
|
1180
1180
|
"icons": [
|
|
1181
1181
|
"IconAddToBasket",
|
|
1182
1182
|
"IconAddToBasket2",
|
|
@@ -1226,7 +1226,6 @@
|
|
|
1226
1226
|
"IconPound",
|
|
1227
1227
|
"IconReceiptBill",
|
|
1228
1228
|
"IconReceiptCheck",
|
|
1229
|
-
"IconReceiptCheck2",
|
|
1230
1229
|
"IconReceiptStorno",
|
|
1231
1230
|
"IconReceiptTax",
|
|
1232
1231
|
"IconRemoveFromBasket",
|
|
@@ -2901,7 +2900,6 @@
|
|
|
2901
2900
|
"IconRear": "rear, front-back, change-cam, lens",
|
|
2902
2901
|
"IconReceiptBill": "receipt-bill, purchase, invoice",
|
|
2903
2902
|
"IconReceiptCheck": "receipt-check, ticket",
|
|
2904
|
-
"IconReceiptCheck2": "receipt-check-2, ticket",
|
|
2905
2903
|
"IconReceiptionBell": "receiption-bell, concierge",
|
|
2906
2904
|
"IconReceiptStorno": "receipt-storno, close, remove",
|
|
2907
2905
|
"IconReceiptTax": "receipt-tax, discount",
|
package/index.d.ts
CHANGED
|
@@ -1148,7 +1148,6 @@ export { IconRecKeyframe, default as IconRecKeyframeDefault, } from "./IconRecKe
|
|
|
1148
1148
|
export { IconRecKeyframe2, default as IconRecKeyframe2Default, } from "./IconRecKeyframe2";
|
|
1149
1149
|
export { IconReceiptBill, default as IconReceiptBillDefault, } from "./IconReceiptBill";
|
|
1150
1150
|
export { IconReceiptCheck, default as IconReceiptCheckDefault, } from "./IconReceiptCheck";
|
|
1151
|
-
export { IconReceiptCheck2, default as IconReceiptCheck2Default, } from "./IconReceiptCheck2";
|
|
1152
1151
|
export { IconReceiptStorno, default as IconReceiptStornoDefault, } from "./IconReceiptStorno";
|
|
1153
1152
|
export { IconReceiptTax, default as IconReceiptTaxDefault, } from "./IconReceiptTax";
|
|
1154
1153
|
export { IconReceiptionBell, default as IconReceiptionBellDefault, } from "./IconReceiptionBell";
|