@postal-music/icons 0.1.8 → 0.1.9
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 +133 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +130 -3
- package/dist/index.mjs.map +1 -1
- package/dist/index.native.js +91 -2
- package/dist/index.native.js.map +1 -1
- package/dist/index.native.mjs +88 -3
- package/dist/index.native.mjs.map +1 -1
- package/dist/types/icons/general/MusicNotePlusIcon.d.ts +6 -0
- package/dist/types/icons/general/Star04Icon.d.ts +8 -0
- package/dist/types/icons/general/Star05Icon.d.ts +8 -0
- package/dist/types/icons/general/index.d.ts +3 -0
- package/dist/types/icons/navigation/Menu03Icon.d.ts +5 -0
- package/dist/types/icons/navigation/index.d.ts +1 -0
- package/package.json +1 -1
- package/src/icons/general/MusicNotePlusIcon.native.tsx +28 -0
- package/src/icons/general/MusicNotePlusIcon.web.tsx +31 -0
- package/src/icons/general/Star04Icon.native.tsx +33 -0
- package/src/icons/general/Star04Icon.web.tsx +44 -0
- package/src/icons/general/Star05Icon.native.tsx +32 -0
- package/src/icons/general/Star05Icon.web.tsx +43 -0
- package/src/icons/general/index.ts +3 -0
- package/src/icons/navigation/Menu03Icon.native.tsx +24 -0
- package/src/icons/navigation/Menu03Icon.web.tsx +29 -0
- package/src/icons/navigation/index.ts +1 -0
package/dist/index.js
CHANGED
|
@@ -3034,6 +3034,34 @@ function MusicNoteIcon({
|
|
|
3034
3034
|
}
|
|
3035
3035
|
);
|
|
3036
3036
|
}
|
|
3037
|
+
function MusicNotePlusIcon({
|
|
3038
|
+
size = 16,
|
|
3039
|
+
className,
|
|
3040
|
+
...props
|
|
3041
|
+
}) {
|
|
3042
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
3043
|
+
"svg",
|
|
3044
|
+
{
|
|
3045
|
+
width: size,
|
|
3046
|
+
height: size,
|
|
3047
|
+
viewBox: "0 0 16 16",
|
|
3048
|
+
fill: "none",
|
|
3049
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3050
|
+
className,
|
|
3051
|
+
...props,
|
|
3052
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
3053
|
+
"path",
|
|
3054
|
+
{
|
|
3055
|
+
d: "M9.66683 11.9994V3.72527C9.66683 3.15379 9.66683 2.86805 9.78719 2.69596C9.89229 2.54569 10.0546 2.44535 10.2361 2.41855C10.4438 2.38786 10.6994 2.51564 11.2105 2.77121L13.6668 3.99937M9.66683 11.9994C9.66683 13.1039 8.7714 13.9994 7.66683 13.9994C6.56226 13.9994 5.66683 13.1039 5.66683 11.9994C5.66683 10.8948 6.56226 9.99937 7.66683 9.99937C8.7714 9.99937 9.66683 10.8948 9.66683 11.9994ZM4.3335 6.66603V2.66603M2.3335 4.66603H6.3335",
|
|
3056
|
+
stroke: "currentColor",
|
|
3057
|
+
strokeWidth: "2",
|
|
3058
|
+
strokeLinecap: "round",
|
|
3059
|
+
strokeLinejoin: "round"
|
|
3060
|
+
}
|
|
3061
|
+
)
|
|
3062
|
+
}
|
|
3063
|
+
);
|
|
3064
|
+
}
|
|
3037
3065
|
var PinIcon = React6__namespace.forwardRef(
|
|
3038
3066
|
({ title, size = 15, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3039
3067
|
"svg",
|
|
@@ -3251,6 +3279,79 @@ function StarIcon({
|
|
|
3251
3279
|
}
|
|
3252
3280
|
);
|
|
3253
3281
|
}
|
|
3282
|
+
var Star04Icon = ({
|
|
3283
|
+
size = 16,
|
|
3284
|
+
color = "currentColor",
|
|
3285
|
+
title,
|
|
3286
|
+
className,
|
|
3287
|
+
...props
|
|
3288
|
+
}) => {
|
|
3289
|
+
const ariaProps = title ? { role: "img", "aria-label": title } : { "aria-hidden": true };
|
|
3290
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3291
|
+
"svg",
|
|
3292
|
+
{
|
|
3293
|
+
width: size,
|
|
3294
|
+
height: size,
|
|
3295
|
+
viewBox: "0 0 16 16",
|
|
3296
|
+
fill: "none",
|
|
3297
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3298
|
+
className,
|
|
3299
|
+
...ariaProps,
|
|
3300
|
+
...props,
|
|
3301
|
+
children: [
|
|
3302
|
+
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }) : null,
|
|
3303
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3304
|
+
"path",
|
|
3305
|
+
{
|
|
3306
|
+
d: "M7.99992 1.33398L9.34122 4.82137C9.52923 5.31019 9.62323 5.5546 9.76942 5.76019C9.89898 5.9424 10.0582 6.10159 10.2404 6.23115C10.446 6.37734 10.6904 6.47134 11.1792 6.65935L14.6666 8.00065L11.1792 9.34195C10.6904 9.52996 10.446 9.62397 10.2404 9.77015C10.0582 9.89971 9.89898 10.0589 9.76942 10.2411C9.62323 10.4467 9.52923 10.6911 9.34122 11.1799L7.99992 14.6673L6.65861 11.1799C6.47061 10.6911 6.3766 10.4467 6.23042 10.2411C6.10086 10.0589 5.94167 9.89971 5.75946 9.77015C5.55387 9.62397 5.30946 9.52996 4.82064 9.34196L1.33325 8.00065L4.82064 6.65935C5.30946 6.47134 5.55387 6.37734 5.75946 6.23115C5.94166 6.10159 6.10086 5.9424 6.23042 5.76019C6.3766 5.5546 6.47061 5.31019 6.65861 4.82137L7.99992 1.33398Z",
|
|
3307
|
+
fill: color,
|
|
3308
|
+
stroke: color,
|
|
3309
|
+
strokeWidth: "2",
|
|
3310
|
+
strokeLinecap: "round",
|
|
3311
|
+
strokeLinejoin: "round"
|
|
3312
|
+
}
|
|
3313
|
+
)
|
|
3314
|
+
]
|
|
3315
|
+
}
|
|
3316
|
+
);
|
|
3317
|
+
};
|
|
3318
|
+
var Star04Icon_web_default = Star04Icon;
|
|
3319
|
+
var Star05Icon = ({
|
|
3320
|
+
size = 18,
|
|
3321
|
+
color = "currentColor",
|
|
3322
|
+
title,
|
|
3323
|
+
className,
|
|
3324
|
+
...props
|
|
3325
|
+
}) => {
|
|
3326
|
+
const ariaProps = title ? { role: "img", "aria-label": title } : { "aria-hidden": true };
|
|
3327
|
+
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
3328
|
+
"svg",
|
|
3329
|
+
{
|
|
3330
|
+
width: size,
|
|
3331
|
+
height: size,
|
|
3332
|
+
viewBox: "0 0 18 18",
|
|
3333
|
+
fill: "none",
|
|
3334
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
3335
|
+
className,
|
|
3336
|
+
...ariaProps,
|
|
3337
|
+
...props,
|
|
3338
|
+
children: [
|
|
3339
|
+
title ? /* @__PURE__ */ jsxRuntime.jsx("title", { children: title }) : null,
|
|
3340
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3341
|
+
"path",
|
|
3342
|
+
{
|
|
3343
|
+
d: "M9 1.5L8.02388 5.40449C7.8334 6.16639 7.73817 6.54733 7.53981 6.85732C7.36436 7.13151 7.13151 7.36436 6.85732 7.53981C6.54733 7.73817 6.16639 7.8334 5.40449 8.02388L1.5 9L5.40449 9.97612C6.16639 10.1666 6.54733 10.2618 6.85732 10.4602C7.13151 10.6356 7.36436 10.8685 7.53981 11.1427C7.73817 11.4527 7.8334 11.8336 8.02388 12.5955L9 16.5L9.97612 12.5955C10.1666 11.8336 10.2618 11.4527 10.4602 11.1427C10.6356 10.8685 10.8685 10.6356 11.1427 10.4602C11.4527 10.2618 11.8336 10.1666 12.5955 9.97612L16.5 9L12.5955 8.02388C11.8336 7.8334 11.4527 7.73817 11.1427 7.53981C10.8685 7.36436 10.6356 7.13151 10.4602 6.85732C10.2618 6.54733 10.1666 6.16639 9.97612 5.40449L9 1.5Z",
|
|
3344
|
+
stroke: color,
|
|
3345
|
+
strokeWidth: "1.67",
|
|
3346
|
+
strokeLinecap: "round",
|
|
3347
|
+
strokeLinejoin: "round"
|
|
3348
|
+
}
|
|
3349
|
+
)
|
|
3350
|
+
]
|
|
3351
|
+
}
|
|
3352
|
+
);
|
|
3353
|
+
};
|
|
3354
|
+
var Star05Icon_web_default = Star05Icon;
|
|
3254
3355
|
var Stars01Icon = ({
|
|
3255
3356
|
size = 16,
|
|
3256
3357
|
className,
|
|
@@ -3354,7 +3455,7 @@ var StarsIcon02 = React6__namespace.forwardRef(
|
|
|
3354
3455
|
);
|
|
3355
3456
|
StarsIcon02.displayName = "StarsIcon02";
|
|
3356
3457
|
var Stars02Icon_web_default = StarsIcon02;
|
|
3357
|
-
var
|
|
3458
|
+
var Star04Icon2 = ({
|
|
3358
3459
|
size = 18,
|
|
3359
3460
|
color = "currentColor",
|
|
3360
3461
|
className
|
|
@@ -3382,7 +3483,7 @@ var Star04Icon = ({
|
|
|
3382
3483
|
]
|
|
3383
3484
|
}
|
|
3384
3485
|
);
|
|
3385
|
-
var Stars04Icon_web_default =
|
|
3486
|
+
var Stars04Icon_web_default = Star04Icon2;
|
|
3386
3487
|
var Stars06Icon = ({
|
|
3387
3488
|
size = 22,
|
|
3388
3489
|
strokeColor = "currentColor",
|
|
@@ -4533,6 +4634,32 @@ var ListIcon = React6__namespace.forwardRef(
|
|
|
4533
4634
|
}
|
|
4534
4635
|
)
|
|
4535
4636
|
);
|
|
4637
|
+
var Menu03Icon = React6__namespace.forwardRef(
|
|
4638
|
+
({ width = 18, height = 18, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4639
|
+
"svg",
|
|
4640
|
+
{
|
|
4641
|
+
ref,
|
|
4642
|
+
width,
|
|
4643
|
+
height,
|
|
4644
|
+
viewBox: "0 0 14 14",
|
|
4645
|
+
fill: "none",
|
|
4646
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4647
|
+
...props,
|
|
4648
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
4649
|
+
"path",
|
|
4650
|
+
{
|
|
4651
|
+
d: "M1.75 7H12.25M1.75 3.5H12.25M1.75 10.5H8.75",
|
|
4652
|
+
stroke: "currentColor",
|
|
4653
|
+
strokeWidth: "1.5",
|
|
4654
|
+
strokeLinecap: "round",
|
|
4655
|
+
strokeLinejoin: "round"
|
|
4656
|
+
}
|
|
4657
|
+
)
|
|
4658
|
+
}
|
|
4659
|
+
)
|
|
4660
|
+
);
|
|
4661
|
+
Menu03Icon.displayName = "Menu03Icon";
|
|
4662
|
+
var Menu03Icon_web_default = Menu03Icon;
|
|
4536
4663
|
var MenuIcon = React6__namespace.forwardRef(
|
|
4537
4664
|
({ width = 18, height = 18, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
4538
4665
|
"svg",
|
|
@@ -5741,6 +5868,7 @@ exports.LogoutIcon = LogoutIcon_web_default;
|
|
|
5741
5868
|
exports.LyricsIcon = LyricsIcon_web_default;
|
|
5742
5869
|
exports.MailIcon = MailIcon_web_default;
|
|
5743
5870
|
exports.MediaUploadIcon = MediaUploadIcon_web_default;
|
|
5871
|
+
exports.Menu03Icon = Menu03Icon_web_default;
|
|
5744
5872
|
exports.MenuIcon = MenuIcon_web_default;
|
|
5745
5873
|
exports.MessageSquareTextIcon = MessageSquareTextIcon_web_default;
|
|
5746
5874
|
exports.MessageTextCircle01Icon = MessageTextCircle01Icon;
|
|
@@ -5751,6 +5879,7 @@ exports.MoonIcon = MoonIcon_web_default;
|
|
|
5751
5879
|
exports.MoreOptionsIcon = MoreOptionsIcon_web_default;
|
|
5752
5880
|
exports.MoveIcon = MoveIcon_web_default;
|
|
5753
5881
|
exports.MusicNoteIcon = MusicNoteIcon;
|
|
5882
|
+
exports.MusicNotePlusIcon = MusicNotePlusIcon;
|
|
5754
5883
|
exports.NarrowUpRightIcon = NarrowUpRightIcon;
|
|
5755
5884
|
exports.NextTrackIcon = NextTrackIcon_web_default;
|
|
5756
5885
|
exports.NotificationTextIcon = NotificationTextIcon;
|
|
@@ -5788,6 +5917,8 @@ exports.SmallMagnifyIcon = SmallMagnifyIcon_web_default;
|
|
|
5788
5917
|
exports.SortIcon = SortIcon_web_default;
|
|
5789
5918
|
exports.SoundCloudIcon = SoundCloudIcon_web_default;
|
|
5790
5919
|
exports.SpotifyIcon = SpotifyIcon_web_default;
|
|
5920
|
+
exports.Star04Icon = Star04Icon_web_default;
|
|
5921
|
+
exports.Star05Icon = Star05Icon_web_default;
|
|
5791
5922
|
exports.StarIcon = StarIcon;
|
|
5792
5923
|
exports.Stars01Icon = Stars01Icon_web_default;
|
|
5793
5924
|
exports.Stars02Icon = Stars02Icon_web_default;
|