@postal-music/icons 0.1.19 → 0.1.21
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/dist/index.js +61 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +33 -0
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +32 -1
- package/dist/index.native.mjs.map +1 -1
- package/dist/types/icons/charts/BarChart07Icon.d.ts +8 -0
- package/dist/types/icons/charts/index.d.ts +1 -0
- package/dist/types/icons/finance/ReceiptIcon.d.ts +9 -0
- package/dist/types/icons/finance/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/icons/charts/BarChart07Icon.native.tsx +25 -0
- package/src/icons/charts/BarChart07Icon.web.tsx +36 -0
- package/src/icons/charts/index.ts +1 -0
- package/src/icons/finance/ReceiptIcon.native.tsx +30 -0
- package/src/icons/finance/ReceiptIcon.web.tsx +36 -0
- package/src/icons/finance/index.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -1338,6 +1338,36 @@ var BarChart01Icon = ({
|
|
|
1338
1338
|
}
|
|
1339
1339
|
);
|
|
1340
1340
|
var BarChart01Icon_web_default = BarChart01Icon;
|
|
1341
|
+
var BarChart07Icon = ({
|
|
1342
|
+
size = 14,
|
|
1343
|
+
color = "currentColor",
|
|
1344
|
+
className,
|
|
1345
|
+
...props
|
|
1346
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1347
|
+
"svg",
|
|
1348
|
+
{
|
|
1349
|
+
width: size,
|
|
1350
|
+
height: size,
|
|
1351
|
+
viewBox: "0 0 14 14",
|
|
1352
|
+
fill: "none",
|
|
1353
|
+
...props,
|
|
1354
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1355
|
+
className,
|
|
1356
|
+
role: "img",
|
|
1357
|
+
"aria-hidden": "true",
|
|
1358
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1359
|
+
"path",
|
|
1360
|
+
{
|
|
1361
|
+
d: "M12.25 12.25H3.61667C2.96327 12.25 2.63657 12.25 2.38701 12.1228C2.16749 12.011 1.98901 11.8325 1.87716 11.613C1.75 11.3634 1.75 11.0367 1.75 10.3833V1.75M4.08333 6.125V10.2083M6.70833 3.20833V10.2083M9.33333 6.125V10.2083M11.9583 3.20833V10.2083",
|
|
1362
|
+
stroke: color,
|
|
1363
|
+
strokeWidth: "1.5",
|
|
1364
|
+
strokeLinecap: "round",
|
|
1365
|
+
strokeLinejoin: "round"
|
|
1366
|
+
}
|
|
1367
|
+
)
|
|
1368
|
+
}
|
|
1369
|
+
);
|
|
1370
|
+
var BarChart07Icon_web_default = BarChart07Icon;
|
|
1341
1371
|
function BarChart10Icon({
|
|
1342
1372
|
size = 15,
|
|
1343
1373
|
className,
|
|
@@ -2363,6 +2393,35 @@ var CurrencyDollarIcon = React6__namespace.memo(
|
|
|
2363
2393
|
})
|
|
2364
2394
|
);
|
|
2365
2395
|
var CurrencyDollarIcon_web_default = CurrencyDollarIcon;
|
|
2396
|
+
var ReceiptIcon = ({
|
|
2397
|
+
size = 24,
|
|
2398
|
+
color = "currentColor",
|
|
2399
|
+
fill = "none",
|
|
2400
|
+
strokeWidth = 2,
|
|
2401
|
+
...props
|
|
2402
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2403
|
+
"svg",
|
|
2404
|
+
{
|
|
2405
|
+
width: size,
|
|
2406
|
+
height: size,
|
|
2407
|
+
viewBox: "0 0 24 24",
|
|
2408
|
+
fill: "none",
|
|
2409
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2410
|
+
...props,
|
|
2411
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2412
|
+
"path",
|
|
2413
|
+
{
|
|
2414
|
+
d: "M4 7.8C4 6.11984 4 5.27976 4.32698 4.63803C4.6146 4.07354 5.07354 3.6146 5.63803 3.32698C6.27976 3 7.11984 3 8.8 3H15.2C16.8802 3 17.7202 3 18.362 3.32698C18.9265 3.6146 19.3854 4.07354 19.673 4.63803C20 5.27976 20 6.11984 20 7.8V21L17.25 19L14.75 21L12 19L9.25 21L6.75 19L4 21V7.8Z",
|
|
2415
|
+
fill,
|
|
2416
|
+
stroke: color,
|
|
2417
|
+
strokeWidth,
|
|
2418
|
+
strokeLinecap: "round",
|
|
2419
|
+
strokeLinejoin: "round"
|
|
2420
|
+
}
|
|
2421
|
+
)
|
|
2422
|
+
}
|
|
2423
|
+
);
|
|
2424
|
+
var ReceiptIcon_web_default = ReceiptIcon;
|
|
2366
2425
|
var Wallet01Icon = ({ size = 18, color = "currentColor", ...props }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2367
2426
|
"svg",
|
|
2368
2427
|
{
|
|
@@ -6603,6 +6662,7 @@ exports.ArrowUpIcon01 = ArrowUpIcon01;
|
|
|
6603
6662
|
exports.AudiomackIcon = AudiomackIcon_web_default;
|
|
6604
6663
|
exports.BankNote03Icon = BankNote03Icon_web_default;
|
|
6605
6664
|
exports.BarChart01Icon = BarChart01Icon_web_default;
|
|
6665
|
+
exports.BarChart07Icon = BarChart07Icon_web_default;
|
|
6606
6666
|
exports.BarChart10Icon = BarChart10Icon;
|
|
6607
6667
|
exports.BellIcon = BellIcon;
|
|
6608
6668
|
exports.BookIcon = BookIcon_web_default;
|
|
@@ -6723,6 +6783,7 @@ exports.PlusIcon = PlusIcon_web_default;
|
|
|
6723
6783
|
exports.PostalIcon = PostalIcon_web_default;
|
|
6724
6784
|
exports.PreviousTrackIcon = PreviousTrackIcon_web_default;
|
|
6725
6785
|
exports.QuestionCircleIcon = QuestionCircleIcon_web_default;
|
|
6786
|
+
exports.ReceiptIcon = ReceiptIcon_web_default;
|
|
6726
6787
|
exports.Recording01Icon = Recordering01_web_default;
|
|
6727
6788
|
exports.Recording02Icon = Recording02_web_default;
|
|
6728
6789
|
exports.Recording03Icon = Recording03Icon_web_default;
|