@postal-music/icons 0.1.13 → 0.1.15
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 +212 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +207 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +136 -0
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +131 -1
- package/dist/index.native.mjs.map +1 -1
- package/dist/types/icons/actions/Download01Icon.d.ts +9 -0
- package/dist/types/icons/actions/Pencil02Icon.d.ts +9 -0
- package/dist/types/icons/actions/index.d.ts +2 -0
- package/dist/types/icons/charts/TrendUp01Icon.d.ts +9 -0
- package/dist/types/icons/charts/index.d.ts +1 -0
- package/dist/types/icons/general/MusicNote02Icon.d.ts +9 -0
- package/dist/types/icons/general/Share06Icon.d.ts +10 -0
- package/dist/types/icons/general/index.d.ts +2 -0
- package/dist/types/icons/users/User02Icon.d.ts +9 -0
- package/dist/types/icons/users/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/icons/actions/Download01Icon.native.tsx +30 -0
- package/src/icons/actions/Download01Icon.web.tsx +36 -0
- package/src/icons/actions/Pencil02Icon.native.tsx +33 -0
- package/src/icons/actions/Pencil02Icon.web.tsx +39 -0
- package/src/icons/actions/index.ts +2 -0
- package/src/icons/charts/TrendUp01Icon.native.tsx +30 -0
- package/src/icons/charts/TrendUp01Icon.web.tsx +36 -0
- package/src/icons/charts/index.ts +1 -0
- package/src/icons/general/MusicNote02Icon.native.tsx +33 -0
- package/src/icons/general/MusicNote02Icon.web.tsx +39 -0
- package/src/icons/general/Share06Icon.native.tsx +30 -0
- package/src/icons/general/Share06Icon.web.tsx +41 -0
- package/src/icons/general/index.ts +2 -0
- package/src/icons/users/User02Icon.native.tsx +38 -0
- package/src/icons/users/User02Icon.web.tsx +44 -0
- package/src/icons/users/index.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -124,6 +124,35 @@ var CopyIcon = ({ size = 16, color = "currentColor", strokeWidth = 1.5, classNam
|
|
|
124
124
|
}
|
|
125
125
|
) });
|
|
126
126
|
var CopyIcon_web_default = CopyIcon;
|
|
127
|
+
var Download01Icon = ({
|
|
128
|
+
size = 16,
|
|
129
|
+
color = "currentColor",
|
|
130
|
+
fill = "none",
|
|
131
|
+
strokeWidth = 1.5,
|
|
132
|
+
...props
|
|
133
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
134
|
+
"svg",
|
|
135
|
+
{
|
|
136
|
+
width: size,
|
|
137
|
+
height: size,
|
|
138
|
+
viewBox: "0 0 16 16",
|
|
139
|
+
fill: "none",
|
|
140
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
141
|
+
...props,
|
|
142
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
143
|
+
"path",
|
|
144
|
+
{
|
|
145
|
+
d: "M14 10V10.8C14 11.9201 14 12.4802 13.782 12.908C13.5903 13.2843 13.2843 13.5903 12.908 13.782C12.4802 14 11.9201 14 10.8 14H5.2C4.07989 14 3.51984 14 3.09202 13.782C2.71569 13.5903 2.40973 13.2843 2.21799 12.908C2 12.4802 2 11.9201 2 10.8V10M4.66667 6.66667L8 10L11.3333 6.66667M8 10V2",
|
|
146
|
+
fill,
|
|
147
|
+
stroke: color,
|
|
148
|
+
strokeWidth,
|
|
149
|
+
strokeLinecap: "round",
|
|
150
|
+
strokeLinejoin: "round"
|
|
151
|
+
}
|
|
152
|
+
)
|
|
153
|
+
}
|
|
154
|
+
);
|
|
155
|
+
var Download01Icon_web_default = Download01Icon;
|
|
127
156
|
var Expand01Icon = ({
|
|
128
157
|
size = 18,
|
|
129
158
|
stroke = "currentColor",
|
|
@@ -372,6 +401,43 @@ var PencilIcon = ({ size = 18, color = "currentColor", strokeWidth = 1.5, stroke
|
|
|
372
401
|
}
|
|
373
402
|
);
|
|
374
403
|
var PencilIcon_web_default = PencilIcon;
|
|
404
|
+
var Pencil02Icon = ({
|
|
405
|
+
size = 20,
|
|
406
|
+
color = "currentColor",
|
|
407
|
+
fill = "none",
|
|
408
|
+
strokeWidth = 2,
|
|
409
|
+
...props
|
|
410
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
411
|
+
"svg",
|
|
412
|
+
{
|
|
413
|
+
width: size,
|
|
414
|
+
height: size,
|
|
415
|
+
viewBox: "0 0 20 20",
|
|
416
|
+
fill: "none",
|
|
417
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
418
|
+
...props,
|
|
419
|
+
children: [
|
|
420
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
421
|
+
"path",
|
|
422
|
+
{
|
|
423
|
+
d: "M5.56613 17.2697C5.82058 17.2003 5.9478 17.1656 6.06644 17.1123C6.17178 17.065 6.27192 17.0069 6.36525 16.9389C6.47036 16.8623 6.56361 16.7691 6.7501 16.5826L15.3613 7.97143C15.5263 7.80642 15.6088 7.72391 15.6397 7.62878C15.6669 7.54509 15.6669 7.45495 15.6397 7.37126C15.6088 7.27613 15.5263 7.19362 15.3613 7.02862L12.9708 4.63809C12.8057 4.47308 12.7232 4.39058 12.6281 4.35967C12.5444 4.33248 12.4543 4.33248 12.3706 4.35967C12.2755 4.39058 12.193 4.47308 12.0279 4.63809L3.41677 13.2493C3.23027 13.4358 3.13703 13.529 3.06045 13.6341C2.99245 13.7274 2.93434 13.8276 2.88704 13.9329C2.83378 14.0516 2.79908 14.1788 2.72968 14.4332L1.66602 18.3334L5.56613 17.2697Z",
|
|
424
|
+
fill
|
|
425
|
+
}
|
|
426
|
+
),
|
|
427
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
428
|
+
"path",
|
|
429
|
+
{
|
|
430
|
+
d: "M14.9993 1.66669L18.3327 5.00002M1.66602 18.3334L2.72968 14.4332C2.79908 14.1788 2.83378 14.0516 2.88704 13.9329C2.93434 13.8276 2.99245 13.7274 3.06045 13.6341C3.13703 13.529 3.23027 13.4358 3.41677 13.2493L12.0279 4.63809C12.193 4.47308 12.2755 4.39058 12.3706 4.35967C12.4543 4.33248 12.5444 4.33248 12.6281 4.35967C12.7232 4.39058 12.8057 4.47308 12.9708 4.63809L15.3613 7.02862C15.5263 7.19362 15.6088 7.27613 15.6397 7.37126C15.6669 7.45495 15.6669 7.54509 15.6397 7.62878C15.6088 7.72391 15.5263 7.80642 15.3613 7.97143L6.7501 16.5826C6.56361 16.7691 6.47036 16.8623 6.36525 16.9389C6.27192 17.0069 6.17178 17.065 6.06644 17.1123C5.9478 17.1656 5.82058 17.2003 5.56613 17.2697L1.66602 18.3334Z",
|
|
431
|
+
stroke: color,
|
|
432
|
+
strokeWidth,
|
|
433
|
+
strokeLinecap: "round",
|
|
434
|
+
strokeLinejoin: "round"
|
|
435
|
+
}
|
|
436
|
+
)
|
|
437
|
+
]
|
|
438
|
+
}
|
|
439
|
+
);
|
|
440
|
+
var Pencil02Icon_web_default = Pencil02Icon;
|
|
375
441
|
var PlusCircleIcon = ({
|
|
376
442
|
size = 28,
|
|
377
443
|
color = "currentColor",
|
|
@@ -1328,6 +1394,35 @@ function LineChart03UpIcon({
|
|
|
1328
1394
|
}
|
|
1329
1395
|
);
|
|
1330
1396
|
}
|
|
1397
|
+
var TrendUp01Icon = ({
|
|
1398
|
+
size = 20,
|
|
1399
|
+
color = "currentColor",
|
|
1400
|
+
fill = "none",
|
|
1401
|
+
strokeWidth = 2,
|
|
1402
|
+
...props
|
|
1403
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
1404
|
+
"svg",
|
|
1405
|
+
{
|
|
1406
|
+
width: size,
|
|
1407
|
+
height: size,
|
|
1408
|
+
viewBox: "0 0 20 20",
|
|
1409
|
+
fill: "none",
|
|
1410
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
1411
|
+
...props,
|
|
1412
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
1413
|
+
"path",
|
|
1414
|
+
{
|
|
1415
|
+
d: "M18.3346 5.83337L11.7774 12.3906C11.4474 12.7206 11.2824 12.8856 11.0921 12.9474C10.9248 13.0018 10.7445 13.0018 10.5771 12.9474C10.3868 12.8856 10.2218 12.7206 9.89183 12.3906L7.61078 10.1095C7.28076 9.7795 7.11576 9.6145 6.92548 9.55267C6.75811 9.49829 6.57782 9.49829 6.41045 9.55267C6.22018 9.6145 6.05517 9.7795 5.72516 10.1095L1.66797 14.1667M18.3346 11.6667V5.83337H12.5013",
|
|
1416
|
+
fill,
|
|
1417
|
+
stroke: color,
|
|
1418
|
+
strokeWidth,
|
|
1419
|
+
strokeLinecap: "round",
|
|
1420
|
+
strokeLinejoin: "round"
|
|
1421
|
+
}
|
|
1422
|
+
)
|
|
1423
|
+
}
|
|
1424
|
+
);
|
|
1425
|
+
var TrendUp01Icon_web_default = TrendUp01Icon;
|
|
1331
1426
|
var AnnotationInfoIcon = ({
|
|
1332
1427
|
title = "Annotation info",
|
|
1333
1428
|
size = 24,
|
|
@@ -3095,6 +3190,43 @@ var MoonIcon = ({ size = 18, color = "currentColor", ...props }) => /* @__PURE__
|
|
|
3095
3190
|
}
|
|
3096
3191
|
);
|
|
3097
3192
|
var MoonIcon_web_default = MoonIcon;
|
|
3193
|
+
var MusicNote02Icon = ({
|
|
3194
|
+
size = 18,
|
|
3195
|
+
color = "currentColor",
|
|
3196
|
+
fill = color,
|
|
3197
|
+
strokeWidth = 2,
|
|
3198
|
+
...props
|
|
3199
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3200
|
+
"svg",
|
|
3201
|
+
{
|
|
3202
|
+
width: size,
|
|
3203
|
+
height: size,
|
|
3204
|
+
viewBox: "0 0 14 14",
|
|
3205
|
+
fill: "none",
|
|
3206
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3207
|
+
...props,
|
|
3208
|
+
children: [
|
|
3209
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3210
|
+
"path",
|
|
3211
|
+
{
|
|
3212
|
+
d: "M5.25 12.25C6.2165 12.25 7 11.4665 7 10.5C7 9.5335 6.2165 8.75 5.25 8.75C4.2835 8.75 3.5 9.5335 3.5 10.5C3.5 11.4665 4.2835 12.25 5.25 12.25Z",
|
|
3213
|
+
fill
|
|
3214
|
+
}
|
|
3215
|
+
),
|
|
3216
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3217
|
+
"path",
|
|
3218
|
+
{
|
|
3219
|
+
d: "M7 10.5V3.26016C7 2.76012 7 2.5101 7.10532 2.35952C7.19728 2.22803 7.33934 2.14023 7.49807 2.11678C7.67985 2.08992 7.90348 2.20174 8.35073 2.42536L10.5 3.5M7 10.5C7 11.4665 6.2165 12.25 5.25 12.25C4.2835 12.25 3.5 11.4665 3.5 10.5C3.5 9.5335 4.2835 8.75 5.25 8.75C6.2165 8.75 7 9.5335 7 10.5Z",
|
|
3220
|
+
stroke: color,
|
|
3221
|
+
strokeWidth,
|
|
3222
|
+
strokeLinecap: "round",
|
|
3223
|
+
strokeLinejoin: "round"
|
|
3224
|
+
}
|
|
3225
|
+
)
|
|
3226
|
+
]
|
|
3227
|
+
}
|
|
3228
|
+
);
|
|
3229
|
+
var MusicNote02Icon_web_default = MusicNote02Icon;
|
|
3098
3230
|
function MusicNoteIcon({
|
|
3099
3231
|
size = 17,
|
|
3100
3232
|
className,
|
|
@@ -3322,6 +3454,38 @@ var Share01Icon = ({
|
|
|
3322
3454
|
)
|
|
3323
3455
|
}
|
|
3324
3456
|
);
|
|
3457
|
+
var Share06Icon = ({
|
|
3458
|
+
size = 18,
|
|
3459
|
+
color = "currentColor",
|
|
3460
|
+
fill = color,
|
|
3461
|
+
strokeWidth = 1,
|
|
3462
|
+
className,
|
|
3463
|
+
...props
|
|
3464
|
+
}) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3465
|
+
"svg",
|
|
3466
|
+
{
|
|
3467
|
+
width: size,
|
|
3468
|
+
height: size,
|
|
3469
|
+
viewBox: "0 0 18 18",
|
|
3470
|
+
fill: "none",
|
|
3471
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3472
|
+
className,
|
|
3473
|
+
role: "img",
|
|
3474
|
+
"aria-hidden": "true",
|
|
3475
|
+
...props,
|
|
3476
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3477
|
+
"path",
|
|
3478
|
+
{
|
|
3479
|
+
d: "M15.5935 9.45553C15.7766 9.29859 15.8682 9.22013 15.9017 9.12675C15.9311 9.0448 15.9311 8.95515 15.9017 8.8732C15.8682 8.77982 15.7766 8.70136 15.5935 8.54442L9.24047 3.09895C8.9253 2.82881 8.76772 2.69373 8.6343 2.69042C8.51835 2.68755 8.40759 2.73849 8.33432 2.8284C8.25 2.93185 8.25 3.1394 8.25 3.55451V6.77595C6.64899 7.05604 5.1837 7.86729 4.09478 9.08537C2.90762 10.4134 2.25093 12.1319 2.25 13.9132V14.3722C3.03701 13.4241 4.01963 12.6574 5.13057 12.1244C6.11002 11.6545 7.16881 11.3762 8.25 11.3029V14.4454C8.25 14.8605 8.25 15.0681 8.33432 15.1716C8.40759 15.2615 8.51835 15.3124 8.6343 15.3095C8.76772 15.3062 8.9253 15.1711 9.24047 14.901L15.5935 9.45553Z",
|
|
3480
|
+
fill,
|
|
3481
|
+
stroke: color,
|
|
3482
|
+
strokeWidth,
|
|
3483
|
+
strokeLinecap: "round",
|
|
3484
|
+
strokeLinejoin: "round"
|
|
3485
|
+
}
|
|
3486
|
+
)
|
|
3487
|
+
}
|
|
3488
|
+
);
|
|
3325
3489
|
var ShareIcon = React6__namespace.forwardRef(
|
|
3326
3490
|
({ size = 18, strokeWidth = 1.5, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
3327
3491
|
"svg",
|
|
@@ -5879,6 +6043,48 @@ function AccountIcon({ size = 16, ...props }) {
|
|
|
5879
6043
|
}
|
|
5880
6044
|
);
|
|
5881
6045
|
}
|
|
6046
|
+
var User02Icon = ({
|
|
6047
|
+
size = 18,
|
|
6048
|
+
color = "currentColor",
|
|
6049
|
+
fill = color,
|
|
6050
|
+
strokeWidth = 2,
|
|
6051
|
+
...props
|
|
6052
|
+
}) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
6053
|
+
"svg",
|
|
6054
|
+
{
|
|
6055
|
+
width: size,
|
|
6056
|
+
height: size,
|
|
6057
|
+
viewBox: "0 0 14 14",
|
|
6058
|
+
fill: "none",
|
|
6059
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6060
|
+
...props,
|
|
6061
|
+
children: [
|
|
6062
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
6063
|
+
"path",
|
|
6064
|
+
{
|
|
6065
|
+
d: "M7.00008 8.75C5.15086 8.75 3.50637 9.64287 2.45941 11.0285C2.23407 11.3267 2.1214 11.4758 2.12509 11.6773C2.12793 11.833 2.2257 12.0294 2.34821 12.1256C2.50677 12.25 2.7265 12.25 3.16596 12.25H10.8342C11.2737 12.25 11.4934 12.25 11.6519 12.1256C11.7744 12.0294 11.8722 11.833 11.8751 11.6773C11.8787 11.4758 11.7661 11.3267 11.5407 11.0285C10.4938 9.64287 8.84929 8.75 7.00008 8.75Z",
|
|
6066
|
+
fill,
|
|
6067
|
+
stroke: color,
|
|
6068
|
+
strokeWidth,
|
|
6069
|
+
strokeLinecap: "round",
|
|
6070
|
+
strokeLinejoin: "round"
|
|
6071
|
+
}
|
|
6072
|
+
),
|
|
6073
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
6074
|
+
"path",
|
|
6075
|
+
{
|
|
6076
|
+
d: "M7.00008 7C8.44982 7 9.62508 5.82475 9.62508 4.375C9.62508 2.92525 8.44982 1.75 7.00008 1.75C5.55033 1.75 4.37508 2.92525 4.37508 4.375C4.37508 5.82475 5.55033 7 7.00008 7Z",
|
|
6077
|
+
fill,
|
|
6078
|
+
stroke: color,
|
|
6079
|
+
strokeWidth,
|
|
6080
|
+
strokeLinecap: "round",
|
|
6081
|
+
strokeLinejoin: "round"
|
|
6082
|
+
}
|
|
6083
|
+
)
|
|
6084
|
+
]
|
|
6085
|
+
}
|
|
6086
|
+
);
|
|
6087
|
+
var User02Icon_web_default = User02Icon;
|
|
5882
6088
|
var UserApproveIcon = ({ size = 18, color = "currentColor", ...props }) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5883
6089
|
"svg",
|
|
5884
6090
|
{
|
|
@@ -6253,6 +6459,7 @@ exports.DataIcon = DataIcon;
|
|
|
6253
6459
|
exports.Dataflow03Icon = Dataflow03Icon_web_default;
|
|
6254
6460
|
exports.Datapoints01Icon = Datapoints01Icon;
|
|
6255
6461
|
exports.DotgridIcon = DotgridIcon;
|
|
6462
|
+
exports.Download01Icon = Download01Icon_web_default;
|
|
6256
6463
|
exports.Download02Icon = Download02Icon_web_default;
|
|
6257
6464
|
exports.Download03Icon = Download03Icon_web_default;
|
|
6258
6465
|
exports.Download04Icon = Download04Icon_web_default;
|
|
@@ -6326,6 +6533,7 @@ exports.MinusIcon = MinusIcon_web_default;
|
|
|
6326
6533
|
exports.MoonIcon = MoonIcon_web_default;
|
|
6327
6534
|
exports.MoreOptionsIcon = MoreOptionsIcon_web_default;
|
|
6328
6535
|
exports.MoveIcon = MoveIcon_web_default;
|
|
6536
|
+
exports.MusicNote02Icon = MusicNote02Icon_web_default;
|
|
6329
6537
|
exports.MusicNoteIcon = MusicNoteIcon;
|
|
6330
6538
|
exports.MusicNotePlusIcon = MusicNotePlusIcon;
|
|
6331
6539
|
exports.MusoIcon = MusoIcon_web_default;
|
|
@@ -6334,6 +6542,7 @@ exports.NextTrackIcon = NextTrackIcon_web_default;
|
|
|
6334
6542
|
exports.NotificationTextIcon = NotificationTextIcon;
|
|
6335
6543
|
exports.PasswordInputIcon = PasswordInputIcon;
|
|
6336
6544
|
exports.PauseIcon = PauseIcon_web_default;
|
|
6545
|
+
exports.Pencil02Icon = Pencil02Icon_web_default;
|
|
6337
6546
|
exports.PencilIcon = PencilIcon_web_default;
|
|
6338
6547
|
exports.PinIcon = PinIcon_web_default;
|
|
6339
6548
|
exports.PlayIcon = PlayIcon_web_default;
|
|
@@ -6357,6 +6566,7 @@ exports.SearchIcon = SearchIcon_web_default;
|
|
|
6357
6566
|
exports.SendIcon = SendIcon_web_default;
|
|
6358
6567
|
exports.SettingsIcon = SettingsIcon_web_default;
|
|
6359
6568
|
exports.Share01Icon = Share01Icon;
|
|
6569
|
+
exports.Share06Icon = Share06Icon;
|
|
6360
6570
|
exports.ShareIcon = ShareIcon_web_default;
|
|
6361
6571
|
exports.ShazamIcon = ShazamIcon_web_default;
|
|
6362
6572
|
exports.Shuffle01Icon = Shuffle01Icon_web_default;
|
|
@@ -6385,11 +6595,13 @@ exports.ThumbsDownIcon = ThumbsDownIcon;
|
|
|
6385
6595
|
exports.TiktokIcon = TiktokIcon_web_default;
|
|
6386
6596
|
exports.Trash02Icon = Trash02Icon_web_default;
|
|
6387
6597
|
exports.TrashIcon = TrashIcon_web_default;
|
|
6598
|
+
exports.TrendUp01Icon = TrendUp01Icon_web_default;
|
|
6388
6599
|
exports.Type01Icon = Type01Icon_web_default;
|
|
6389
6600
|
exports.UTurnIcon = UTurnIcon;
|
|
6390
6601
|
exports.Upload01Icon = Upload01Icon;
|
|
6391
6602
|
exports.UploadCloudIcon = UploadCloudIcon;
|
|
6392
6603
|
exports.UploadIcon = UploadIcon;
|
|
6604
|
+
exports.User02Icon = User02Icon_web_default;
|
|
6393
6605
|
exports.UserApproveIcon = UserApproveIcon_web_default;
|
|
6394
6606
|
exports.UserIcon = UserIcon_web_default;
|
|
6395
6607
|
exports.UserPlusIcon = UserPlusIcon;
|