@postal-music/icons 0.1.7 → 0.1.8

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 (34) hide show
  1. package/dist/index.js +180 -4
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +175 -5
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/index.native.js +89 -3
  6. package/dist/index.native.js.map +1 -1
  7. package/dist/index.native.mjs +84 -4
  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/navigation/AlignLeft01Icon.d.ts +6 -0
  13. package/dist/types/icons/navigation/FlexAlignBottomIcon.d.ts +6 -0
  14. package/dist/types/icons/navigation/FlexAlignLeftIcon.d.ts +6 -0
  15. package/dist/types/icons/navigation/FlexAlignRightIcon.d.ts +6 -0
  16. package/dist/types/icons/navigation/FlexAlignTopIcon.d.ts +6 -0
  17. package/dist/types/icons/navigation/index.d.ts +5 -0
  18. package/package.json +1 -1
  19. package/src/icons/arrows/ArrowUpIcon.native.tsx +4 -3
  20. package/src/icons/arrows/ArrowUpIcon.web.tsx +5 -5
  21. package/src/icons/arrows/ChevronUpIcon.native.tsx +32 -0
  22. package/src/icons/arrows/ChevronUpIcon.web.tsx +29 -0
  23. package/src/icons/arrows/index.ts +1 -0
  24. package/src/icons/navigation/AlignLeft01Icon.native.tsx +21 -0
  25. package/src/icons/navigation/AlignLeft01Icon.web.tsx +31 -0
  26. package/src/icons/navigation/FlexAlignBottomIcon.native.tsx +21 -0
  27. package/src/icons/navigation/FlexAlignBottomIcon.web.tsx +31 -0
  28. package/src/icons/navigation/FlexAlignLeftIcon.native.tsx +21 -0
  29. package/src/icons/navigation/FlexAlignLeftIcon.web.tsx +31 -0
  30. package/src/icons/navigation/FlexAlignRightIcon.native.tsx +21 -0
  31. package/src/icons/navigation/FlexAlignRightIcon.web.tsx +31 -0
  32. package/src/icons/navigation/FlexAlignTopIcon.native.tsx +21 -0
  33. package/src/icons/navigation/FlexAlignTopIcon.web.tsx +31 -0
  34. package/src/icons/navigation/index.ts +5 -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",
@@ -4068,6 +4098,34 @@ var VolumeMaxIcon = React6__namespace.forwardRef(({ size = 20, label, className,
4068
4098
  }
4069
4099
  );
4070
4100
  });
4101
+ function AlignLeft01Icon({
4102
+ size = 16,
4103
+ className,
4104
+ ...props
4105
+ }) {
4106
+ return /* @__PURE__ */ jsxRuntime.jsx(
4107
+ "svg",
4108
+ {
4109
+ width: size,
4110
+ height: size,
4111
+ viewBox: "0 0 24 24",
4112
+ fill: "none",
4113
+ xmlns: "http://www.w3.org/2000/svg",
4114
+ className,
4115
+ ...props,
4116
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4117
+ "path",
4118
+ {
4119
+ d: "M3 3V21M21 12H7M14 5L7 12L14 19",
4120
+ stroke: "currentColor",
4121
+ strokeWidth: "2",
4122
+ strokeLinecap: "round",
4123
+ strokeLinejoin: "round"
4124
+ }
4125
+ )
4126
+ }
4127
+ );
4128
+ }
4071
4129
  function AlignLeftIcon({
4072
4130
  size = 16,
4073
4131
  className,
@@ -4161,6 +4219,118 @@ var FilterIcon = ({ size = 18, color = "currentColor" }) => /* @__PURE__ */ jsxR
4161
4219
  }
4162
4220
  );
4163
4221
  var FilterIcon_web_default = FilterIcon;
4222
+ function FlexAlignBottomIcon({
4223
+ size = 16,
4224
+ className,
4225
+ ...props
4226
+ }) {
4227
+ return /* @__PURE__ */ jsxRuntime.jsx(
4228
+ "svg",
4229
+ {
4230
+ width: size,
4231
+ height: size,
4232
+ viewBox: "0 0 24 24",
4233
+ fill: "none",
4234
+ xmlns: "http://www.w3.org/2000/svg",
4235
+ className,
4236
+ ...props,
4237
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4238
+ "path",
4239
+ {
4240
+ 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",
4241
+ stroke: "currentColor",
4242
+ strokeWidth: "2",
4243
+ strokeLinecap: "round",
4244
+ strokeLinejoin: "round"
4245
+ }
4246
+ )
4247
+ }
4248
+ );
4249
+ }
4250
+ function FlexAlignLeftIcon({
4251
+ size = 16,
4252
+ className,
4253
+ ...props
4254
+ }) {
4255
+ return /* @__PURE__ */ jsxRuntime.jsx(
4256
+ "svg",
4257
+ {
4258
+ width: size,
4259
+ height: size,
4260
+ viewBox: "0 0 24 24",
4261
+ fill: "none",
4262
+ xmlns: "http://www.w3.org/2000/svg",
4263
+ className,
4264
+ ...props,
4265
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4266
+ "path",
4267
+ {
4268
+ 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",
4269
+ stroke: "currentColor",
4270
+ strokeWidth: "2",
4271
+ strokeLinecap: "round",
4272
+ strokeLinejoin: "round"
4273
+ }
4274
+ )
4275
+ }
4276
+ );
4277
+ }
4278
+ function FlexAlignRightIcon({
4279
+ size = 16,
4280
+ className,
4281
+ ...props
4282
+ }) {
4283
+ return /* @__PURE__ */ jsxRuntime.jsx(
4284
+ "svg",
4285
+ {
4286
+ width: size,
4287
+ height: size,
4288
+ viewBox: "0 0 24 24",
4289
+ fill: "none",
4290
+ xmlns: "http://www.w3.org/2000/svg",
4291
+ className,
4292
+ ...props,
4293
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4294
+ "path",
4295
+ {
4296
+ 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",
4297
+ stroke: "currentColor",
4298
+ strokeWidth: "2",
4299
+ strokeLinecap: "round",
4300
+ strokeLinejoin: "round"
4301
+ }
4302
+ )
4303
+ }
4304
+ );
4305
+ }
4306
+ function FlexAlignTopIcon({
4307
+ size = 16,
4308
+ className,
4309
+ ...props
4310
+ }) {
4311
+ return /* @__PURE__ */ jsxRuntime.jsx(
4312
+ "svg",
4313
+ {
4314
+ width: size,
4315
+ height: size,
4316
+ viewBox: "0 0 24 24",
4317
+ fill: "none",
4318
+ xmlns: "http://www.w3.org/2000/svg",
4319
+ className,
4320
+ ...props,
4321
+ children: /* @__PURE__ */ jsxRuntime.jsx(
4322
+ "path",
4323
+ {
4324
+ 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",
4325
+ stroke: "currentColor",
4326
+ strokeWidth: "2",
4327
+ strokeLinecap: "round",
4328
+ strokeLinejoin: "round"
4329
+ }
4330
+ )
4331
+ }
4332
+ );
4333
+ }
4164
4334
  function Grid01Icon({
4165
4335
  size = 15,
4166
4336
  className,
@@ -5479,6 +5649,7 @@ var radius = {
5479
5649
  exports.AccountIcon = AccountIcon;
5480
5650
  exports.ActivityIcon = ActivityIcon_web_default;
5481
5651
  exports.AlertTriangleIcon = AlertTriangleIcon_web_default;
5652
+ exports.AlignLeft01Icon = AlignLeft01Icon;
5482
5653
  exports.AlignLeftIcon = AlignLeftIcon;
5483
5654
  exports.AnnotationInfoIcon = AnnotationInfoIcon_web_default;
5484
5655
  exports.AppleMusicIcon = AppleMusicIcon;
@@ -5502,6 +5673,7 @@ exports.CheckCircleIcon = CheckCircleIcon_web_default;
5502
5673
  exports.CheckIcon = CheckIcon_web_default;
5503
5674
  exports.ChevronLeftIcon = ChevronLeftIcon_web_default;
5504
5675
  exports.ChevronSelectorIcon = ChevronSelectorIcon_web_default;
5676
+ exports.ChevronUpIcon = ChevronUpIcon;
5505
5677
  exports.ClockIcon = ClockIcon;
5506
5678
  exports.CoinsStacked03Icon = CoinsStacked03Icon_web_default;
5507
5679
  exports.CollaborativeIcon = CollaborativeIcon_web_default;
@@ -5527,6 +5699,10 @@ exports.File02Icon = File02Icon_web_default;
5527
5699
  exports.FileDownload02Icon = FileDownload02Icon_web_default;
5528
5700
  exports.FilterIcon = FilterIcon_web_default;
5529
5701
  exports.Flag01Icon = Flag01Icon_web_default;
5702
+ exports.FlexAlignBottomIcon = FlexAlignBottomIcon;
5703
+ exports.FlexAlignLeftIcon = FlexAlignLeftIcon;
5704
+ exports.FlexAlignRightIcon = FlexAlignRightIcon;
5705
+ exports.FlexAlignTopIcon = FlexAlignTopIcon;
5530
5706
  exports.FolderGradientIcon = FolderGradientIcon_web_default;
5531
5707
  exports.FolderIcon = FolderIcon_web_default;
5532
5708
  exports.FolderPlusIcon = FolderPlusIcon;