@postal-music/icons 0.1.19 → 0.1.20
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 +30 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +30 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +18 -0
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +18 -1
- package/dist/index.native.mjs.map +1 -1
- 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/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
|
@@ -2363,6 +2363,35 @@ var CurrencyDollarIcon = React6__namespace.memo(
|
|
|
2363
2363
|
})
|
|
2364
2364
|
);
|
|
2365
2365
|
var CurrencyDollarIcon_web_default = CurrencyDollarIcon;
|
|
2366
|
+
var ReceiptIcon = ({
|
|
2367
|
+
size = 24,
|
|
2368
|
+
color = "currentColor",
|
|
2369
|
+
fill = "none",
|
|
2370
|
+
strokeWidth = 2,
|
|
2371
|
+
...props
|
|
2372
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2373
|
+
"svg",
|
|
2374
|
+
{
|
|
2375
|
+
width: size,
|
|
2376
|
+
height: size,
|
|
2377
|
+
viewBox: "0 0 24 24",
|
|
2378
|
+
fill: "none",
|
|
2379
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2380
|
+
...props,
|
|
2381
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
2382
|
+
"path",
|
|
2383
|
+
{
|
|
2384
|
+
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",
|
|
2385
|
+
fill,
|
|
2386
|
+
stroke: color,
|
|
2387
|
+
strokeWidth,
|
|
2388
|
+
strokeLinecap: "round",
|
|
2389
|
+
strokeLinejoin: "round"
|
|
2390
|
+
}
|
|
2391
|
+
)
|
|
2392
|
+
}
|
|
2393
|
+
);
|
|
2394
|
+
var ReceiptIcon_web_default = ReceiptIcon;
|
|
2366
2395
|
var Wallet01Icon = ({ size = 18, color = "currentColor", ...props }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
2367
2396
|
"svg",
|
|
2368
2397
|
{
|
|
@@ -6723,6 +6752,7 @@ exports.PlusIcon = PlusIcon_web_default;
|
|
|
6723
6752
|
exports.PostalIcon = PostalIcon_web_default;
|
|
6724
6753
|
exports.PreviousTrackIcon = PreviousTrackIcon_web_default;
|
|
6725
6754
|
exports.QuestionCircleIcon = QuestionCircleIcon_web_default;
|
|
6755
|
+
exports.ReceiptIcon = ReceiptIcon_web_default;
|
|
6726
6756
|
exports.Recording01Icon = Recordering01_web_default;
|
|
6727
6757
|
exports.Recording02Icon = Recording02_web_default;
|
|
6728
6758
|
exports.Recording03Icon = Recording03Icon_web_default;
|