@postal-music/icons 0.1.7 → 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.
Files changed (48) hide show
  1. package/dist/index.js +313 -6
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +304 -7
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/index.native.js +180 -5
  6. package/dist/index.native.js.map +1 -1
  7. package/dist/index.native.mjs +171 -6
  8. package/dist/index.native.mjs.map +1 -1
  9. package/dist/types/icons/arrows/ArrowUpIcon.d.ts +1 -2
  10. package/dist/types/icons/arrows/ChevronUpIcon.d.ts +5 -0
  11. package/dist/types/icons/arrows/index.d.ts +1 -0
  12. package/dist/types/icons/general/MusicNotePlusIcon.d.ts +6 -0
  13. package/dist/types/icons/general/Star04Icon.d.ts +8 -0
  14. package/dist/types/icons/general/Star05Icon.d.ts +8 -0
  15. package/dist/types/icons/general/index.d.ts +3 -0
  16. package/dist/types/icons/navigation/AlignLeft01Icon.d.ts +6 -0
  17. package/dist/types/icons/navigation/FlexAlignBottomIcon.d.ts +6 -0
  18. package/dist/types/icons/navigation/FlexAlignLeftIcon.d.ts +6 -0
  19. package/dist/types/icons/navigation/FlexAlignRightIcon.d.ts +6 -0
  20. package/dist/types/icons/navigation/FlexAlignTopIcon.d.ts +6 -0
  21. package/dist/types/icons/navigation/Menu03Icon.d.ts +5 -0
  22. package/dist/types/icons/navigation/index.d.ts +6 -0
  23. package/package.json +1 -1
  24. package/src/icons/arrows/ArrowUpIcon.native.tsx +4 -3
  25. package/src/icons/arrows/ArrowUpIcon.web.tsx +5 -5
  26. package/src/icons/arrows/ChevronUpIcon.native.tsx +32 -0
  27. package/src/icons/arrows/ChevronUpIcon.web.tsx +29 -0
  28. package/src/icons/arrows/index.ts +1 -0
  29. package/src/icons/general/MusicNotePlusIcon.native.tsx +28 -0
  30. package/src/icons/general/MusicNotePlusIcon.web.tsx +31 -0
  31. package/src/icons/general/Star04Icon.native.tsx +33 -0
  32. package/src/icons/general/Star04Icon.web.tsx +44 -0
  33. package/src/icons/general/Star05Icon.native.tsx +32 -0
  34. package/src/icons/general/Star05Icon.web.tsx +43 -0
  35. package/src/icons/general/index.ts +3 -0
  36. package/src/icons/navigation/AlignLeft01Icon.native.tsx +21 -0
  37. package/src/icons/navigation/AlignLeft01Icon.web.tsx +31 -0
  38. package/src/icons/navigation/FlexAlignBottomIcon.native.tsx +21 -0
  39. package/src/icons/navigation/FlexAlignBottomIcon.web.tsx +31 -0
  40. package/src/icons/navigation/FlexAlignLeftIcon.native.tsx +21 -0
  41. package/src/icons/navigation/FlexAlignLeftIcon.web.tsx +31 -0
  42. package/src/icons/navigation/FlexAlignRightIcon.native.tsx +21 -0
  43. package/src/icons/navigation/FlexAlignRightIcon.web.tsx +31 -0
  44. package/src/icons/navigation/FlexAlignTopIcon.native.tsx +21 -0
  45. package/src/icons/navigation/FlexAlignTopIcon.web.tsx +31 -0
  46. package/src/icons/navigation/Menu03Icon.native.tsx +24 -0
  47. package/src/icons/navigation/Menu03Icon.web.tsx +29 -0
  48. package/src/icons/navigation/index.ts +6 -0
package/dist/index.js CHANGED
@@ -960,7 +960,6 @@ ArrowUpIcon01.displayName = "ArrowUpIcon01";
960
960
  function ArrowUpIcon({
961
961
  className,
962
962
  size = 16,
963
- stroke = "#8F8F8F",
964
963
  color = "currentColor",
965
964
  fill = "none",
966
965
  ...props
@@ -970,7 +969,7 @@ function ArrowUpIcon({
970
969
  {
971
970
  width: size,
972
971
  height: size,
973
- viewBox: "0 0 16 16",
972
+ viewBox: "0 0 24 24",
974
973
  fill,
975
974
  xmlns: "http://www.w3.org/2000/svg",
976
975
  className,
@@ -978,9 +977,10 @@ function ArrowUpIcon({
978
977
  children: /* @__PURE__ */ jsxRuntime.jsx(
979
978
  "path",
980
979
  {
981
- d: "M12 10L8 6L4 10",
980
+ d: "M12 19V5M19 12L12 5L5 12",
982
981
  stroke: color,
983
- strokeWidth: 1.5,
982
+ strokeWidth: "2",
983
+ strokeLinecap: "round",
984
984
  strokeLinejoin: "round"
985
985
  }
986
986
  )
@@ -1036,6 +1036,36 @@ var ChevronSelectorIcon = ({
1036
1036
  }
1037
1037
  );
1038
1038
  var ChevronSelectorIcon_web_default = ChevronSelectorIcon;
1039
+ function ChevronUpIcon({
1040
+ className,
1041
+ size = 16,
1042
+ stroke = "#8F8F8F",
1043
+ color = "currentColor",
1044
+ fill = "none",
1045
+ ...props
1046
+ }) {
1047
+ return /* @__PURE__ */ jsxRuntime.jsx(
1048
+ "svg",
1049
+ {
1050
+ width: size,
1051
+ height: size,
1052
+ viewBox: "0 0 16 16",
1053
+ fill,
1054
+ xmlns: "http://www.w3.org/2000/svg",
1055
+ className,
1056
+ ...props,
1057
+ children: /* @__PURE__ */ jsxRuntime.jsx(
1058
+ "path",
1059
+ {
1060
+ d: "M12 10L8 6L4 10",
1061
+ stroke: color,
1062
+ strokeWidth: 1.5,
1063
+ strokeLinejoin: "round"
1064
+ }
1065
+ )
1066
+ }
1067
+ );
1068
+ }
1039
1069
  function NarrowUpRightIcon({ title, ...props }) {
1040
1070
  return /* @__PURE__ */ jsxRuntime.jsxs(
1041
1071
  "svg",
@@ -3004,6 +3034,34 @@ function MusicNoteIcon({
3004
3034
  }
3005
3035
  );
3006
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
+ }
3007
3065
  var PinIcon = React6__namespace.forwardRef(
3008
3066
  ({ title, size = 15, className, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(
3009
3067
  "svg",
@@ -3221,6 +3279,79 @@ function StarIcon({
3221
3279
  }
3222
3280
  );
3223
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;
3224
3355
  var Stars01Icon = ({
3225
3356
  size = 16,
3226
3357
  className,
@@ -3324,7 +3455,7 @@ var StarsIcon02 = React6__namespace.forwardRef(
3324
3455
  );
3325
3456
  StarsIcon02.displayName = "StarsIcon02";
3326
3457
  var Stars02Icon_web_default = StarsIcon02;
3327
- var Star04Icon = ({
3458
+ var Star04Icon2 = ({
3328
3459
  size = 18,
3329
3460
  color = "currentColor",
3330
3461
  className
@@ -3352,7 +3483,7 @@ var Star04Icon = ({
3352
3483
  ]
3353
3484
  }
3354
3485
  );
3355
- var Stars04Icon_web_default = Star04Icon;
3486
+ var Stars04Icon_web_default = Star04Icon2;
3356
3487
  var Stars06Icon = ({
3357
3488
  size = 22,
3358
3489
  strokeColor = "currentColor",
@@ -4068,6 +4199,34 @@ var VolumeMaxIcon = React6__namespace.forwardRef(({ size = 20, label, className,
4068
4199
  }
4069
4200
  );
4070
4201
  });
4202
+ function AlignLeft01Icon({
4203
+ size = 16,
4204
+ className,
4205
+ ...props
4206
+ }) {
4207
+ return /* @__PURE__ */ jsxRuntime.jsx(
4208
+ "svg",
4209
+ {
4210
+ width: size,
4211
+ height: size,
4212
+ viewBox: "0 0 24 24",
4213
+ fill: "none",
4214
+ xmlns: "http://www.w3.org/2000/svg",
4215
+ className,
4216
+ ...props,
4217
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4218
+ "path",
4219
+ {
4220
+ d: "M3 3V21M21 12H7M14 5L7 12L14 19",
4221
+ stroke: "currentColor",
4222
+ strokeWidth: "2",
4223
+ strokeLinecap: "round",
4224
+ strokeLinejoin: "round"
4225
+ }
4226
+ )
4227
+ }
4228
+ );
4229
+ }
4071
4230
  function AlignLeftIcon({
4072
4231
  size = 16,
4073
4232
  className,
@@ -4161,6 +4320,118 @@ var FilterIcon = ({ size = 18, color = "currentColor" }) => /* @__PURE__ */ jsxR
4161
4320
  }
4162
4321
  );
4163
4322
  var FilterIcon_web_default = FilterIcon;
4323
+ function FlexAlignBottomIcon({
4324
+ size = 16,
4325
+ className,
4326
+ ...props
4327
+ }) {
4328
+ return /* @__PURE__ */ jsxRuntime.jsx(
4329
+ "svg",
4330
+ {
4331
+ width: size,
4332
+ height: size,
4333
+ viewBox: "0 0 24 24",
4334
+ fill: "none",
4335
+ xmlns: "http://www.w3.org/2000/svg",
4336
+ className,
4337
+ ...props,
4338
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4339
+ "path",
4340
+ {
4341
+ d: "M17.5 17.6L6.5 17.6M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
4342
+ stroke: "currentColor",
4343
+ strokeWidth: "2",
4344
+ strokeLinecap: "round",
4345
+ strokeLinejoin: "round"
4346
+ }
4347
+ )
4348
+ }
4349
+ );
4350
+ }
4351
+ function FlexAlignLeftIcon({
4352
+ size = 16,
4353
+ className,
4354
+ ...props
4355
+ }) {
4356
+ return /* @__PURE__ */ jsxRuntime.jsx(
4357
+ "svg",
4358
+ {
4359
+ width: size,
4360
+ height: size,
4361
+ viewBox: "0 0 24 24",
4362
+ fill: "none",
4363
+ xmlns: "http://www.w3.org/2000/svg",
4364
+ className,
4365
+ ...props,
4366
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4367
+ "path",
4368
+ {
4369
+ d: "M6.5 17.5L6.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
4370
+ stroke: "currentColor",
4371
+ strokeWidth: "2",
4372
+ strokeLinecap: "round",
4373
+ strokeLinejoin: "round"
4374
+ }
4375
+ )
4376
+ }
4377
+ );
4378
+ }
4379
+ function FlexAlignRightIcon({
4380
+ size = 16,
4381
+ className,
4382
+ ...props
4383
+ }) {
4384
+ return /* @__PURE__ */ jsxRuntime.jsx(
4385
+ "svg",
4386
+ {
4387
+ width: size,
4388
+ height: size,
4389
+ viewBox: "0 0 24 24",
4390
+ fill: "none",
4391
+ xmlns: "http://www.w3.org/2000/svg",
4392
+ className,
4393
+ ...props,
4394
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4395
+ "path",
4396
+ {
4397
+ d: "M17.5 17.5L17.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
4398
+ stroke: "currentColor",
4399
+ strokeWidth: "2",
4400
+ strokeLinecap: "round",
4401
+ strokeLinejoin: "round"
4402
+ }
4403
+ )
4404
+ }
4405
+ );
4406
+ }
4407
+ function FlexAlignTopIcon({
4408
+ size = 16,
4409
+ className,
4410
+ ...props
4411
+ }) {
4412
+ return /* @__PURE__ */ jsxRuntime.jsx(
4413
+ "svg",
4414
+ {
4415
+ width: size,
4416
+ height: size,
4417
+ viewBox: "0 0 24 24",
4418
+ fill: "none",
4419
+ xmlns: "http://www.w3.org/2000/svg",
4420
+ className,
4421
+ ...props,
4422
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4423
+ "path",
4424
+ {
4425
+ d: "M17.5 6.5L6.5 6.5M7.8 3H16.2C17.8802 3 18.7202 3 19.362 3.32698C19.9265 3.6146 20.3854 4.07354 20.673 4.63803C21 5.27976 21 6.11984 21 7.8V16.2C21 17.8802 21 18.7202 20.673 19.362C20.3854 19.9265 19.9265 20.3854 19.362 20.673C18.7202 21 17.8802 21 16.2 21H7.8C6.11984 21 5.27976 21 4.63803 20.673C4.07354 20.3854 3.6146 19.9265 3.32698 19.362C3 18.7202 3 17.8802 3 16.2V7.8C3 6.11984 3 5.27976 3.32698 4.63803C3.6146 4.07354 4.07354 3.6146 4.63803 3.32698C5.27976 3 6.11984 3 7.8 3Z",
4426
+ stroke: "currentColor",
4427
+ strokeWidth: "2",
4428
+ strokeLinecap: "round",
4429
+ strokeLinejoin: "round"
4430
+ }
4431
+ )
4432
+ }
4433
+ );
4434
+ }
4164
4435
  function Grid01Icon({
4165
4436
  size = 15,
4166
4437
  className,
@@ -4363,6 +4634,32 @@ var ListIcon = React6__namespace.forwardRef(
4363
4634
  }
4364
4635
  )
4365
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;
4366
4663
  var MenuIcon = React6__namespace.forwardRef(
4367
4664
  ({ width = 18, height = 18, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsx(
4368
4665
  "svg",
@@ -5479,6 +5776,7 @@ var radius = {
5479
5776
  exports.AccountIcon = AccountIcon;
5480
5777
  exports.ActivityIcon = ActivityIcon_web_default;
5481
5778
  exports.AlertTriangleIcon = AlertTriangleIcon_web_default;
5779
+ exports.AlignLeft01Icon = AlignLeft01Icon;
5482
5780
  exports.AlignLeftIcon = AlignLeftIcon;
5483
5781
  exports.AnnotationInfoIcon = AnnotationInfoIcon_web_default;
5484
5782
  exports.AppleMusicIcon = AppleMusicIcon;
@@ -5502,6 +5800,7 @@ exports.CheckCircleIcon = CheckCircleIcon_web_default;
5502
5800
  exports.CheckIcon = CheckIcon_web_default;
5503
5801
  exports.ChevronLeftIcon = ChevronLeftIcon_web_default;
5504
5802
  exports.ChevronSelectorIcon = ChevronSelectorIcon_web_default;
5803
+ exports.ChevronUpIcon = ChevronUpIcon;
5505
5804
  exports.ClockIcon = ClockIcon;
5506
5805
  exports.CoinsStacked03Icon = CoinsStacked03Icon_web_default;
5507
5806
  exports.CollaborativeIcon = CollaborativeIcon_web_default;
@@ -5527,6 +5826,10 @@ exports.File02Icon = File02Icon_web_default;
5527
5826
  exports.FileDownload02Icon = FileDownload02Icon_web_default;
5528
5827
  exports.FilterIcon = FilterIcon_web_default;
5529
5828
  exports.Flag01Icon = Flag01Icon_web_default;
5829
+ exports.FlexAlignBottomIcon = FlexAlignBottomIcon;
5830
+ exports.FlexAlignLeftIcon = FlexAlignLeftIcon;
5831
+ exports.FlexAlignRightIcon = FlexAlignRightIcon;
5832
+ exports.FlexAlignTopIcon = FlexAlignTopIcon;
5530
5833
  exports.FolderGradientIcon = FolderGradientIcon_web_default;
5531
5834
  exports.FolderIcon = FolderIcon_web_default;
5532
5835
  exports.FolderPlusIcon = FolderPlusIcon;
@@ -5565,6 +5868,7 @@ exports.LogoutIcon = LogoutIcon_web_default;
5565
5868
  exports.LyricsIcon = LyricsIcon_web_default;
5566
5869
  exports.MailIcon = MailIcon_web_default;
5567
5870
  exports.MediaUploadIcon = MediaUploadIcon_web_default;
5871
+ exports.Menu03Icon = Menu03Icon_web_default;
5568
5872
  exports.MenuIcon = MenuIcon_web_default;
5569
5873
  exports.MessageSquareTextIcon = MessageSquareTextIcon_web_default;
5570
5874
  exports.MessageTextCircle01Icon = MessageTextCircle01Icon;
@@ -5575,6 +5879,7 @@ exports.MoonIcon = MoonIcon_web_default;
5575
5879
  exports.MoreOptionsIcon = MoreOptionsIcon_web_default;
5576
5880
  exports.MoveIcon = MoveIcon_web_default;
5577
5881
  exports.MusicNoteIcon = MusicNoteIcon;
5882
+ exports.MusicNotePlusIcon = MusicNotePlusIcon;
5578
5883
  exports.NarrowUpRightIcon = NarrowUpRightIcon;
5579
5884
  exports.NextTrackIcon = NextTrackIcon_web_default;
5580
5885
  exports.NotificationTextIcon = NotificationTextIcon;
@@ -5612,6 +5917,8 @@ exports.SmallMagnifyIcon = SmallMagnifyIcon_web_default;
5612
5917
  exports.SortIcon = SortIcon_web_default;
5613
5918
  exports.SoundCloudIcon = SoundCloudIcon_web_default;
5614
5919
  exports.SpotifyIcon = SpotifyIcon_web_default;
5920
+ exports.Star04Icon = Star04Icon_web_default;
5921
+ exports.Star05Icon = Star05Icon_web_default;
5615
5922
  exports.StarIcon = StarIcon;
5616
5923
  exports.Stars01Icon = Stars01Icon_web_default;
5617
5924
  exports.Stars02Icon = Stars02Icon_web_default;