@postal-music/icons 0.1.21 → 0.1.22

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.
@@ -2919,6 +2919,32 @@ var TenSecondsBackIcon = ({ size = 20 }) => /* @__PURE__ */ jsxRuntime.jsxs(
2919
2919
  );
2920
2920
  TenSecondsBackIcon.displayName = "TenSecondsBackIcon";
2921
2921
  var SecondsBackIcon_native_default = TenSecondsBackIcon;
2922
+ var BackwardIcon = ({ size = 20, color = "#000000" }) => /* @__PURE__ */ jsxRuntime.jsxs(
2923
+ Svg__default.default,
2924
+ {
2925
+ width: size,
2926
+ height: size,
2927
+ viewBox: "0 0 28 16",
2928
+ fill: "none",
2929
+ children: [
2930
+ /* @__PURE__ */ jsxRuntime.jsx(
2931
+ Svg.Path,
2932
+ {
2933
+ d: "M14.25 12.6738C14.25 13.3213 14.25 13.645 14.0981 13.8234C13.9658 13.9789 13.7636 14.0751 13.5447 14.0867C13.2934 14.1 12.9904 13.9205 12.3844 13.5613L4.49769 8.88776C3.99693 8.59101 3.74654 8.44264 3.65929 8.25562C3.58301 8.09212 3.58301 7.90836 3.65929 7.74486C3.74654 7.55784 3.99693 7.40947 4.49769 7.11272L12.3844 2.43914C12.9904 2.08 13.2934 1.90043 13.5447 1.91377C13.7636 1.92539 13.9658 2.02159 14.0981 2.17705C14.25 2.35549 14.25 2.67921 14.25 3.32666L14.25 12.6738Z",
2934
+ fill: color
2935
+ }
2936
+ ),
2937
+ /* @__PURE__ */ jsxRuntime.jsx(
2938
+ Svg.Path,
2939
+ {
2940
+ d: "M24.25 12.6738C24.25 13.3213 24.25 13.645 24.0981 13.8234C23.9658 13.9789 23.7636 14.0751 23.5447 14.0867C23.2934 14.1 22.9904 13.9205 22.3844 13.5613L14.4977 8.88776C13.9969 8.59101 13.7465 8.44264 13.6593 8.25562C13.583 8.09212 13.583 7.90836 13.6593 7.74486C13.7465 7.55784 13.9969 7.40947 14.4977 7.11272L22.3844 2.43914C22.9904 2.08 23.2934 1.90043 23.5447 1.91377C23.7636 1.92539 23.9658 2.02159 24.0981 2.17705C24.25 2.35549 24.25 2.67921 24.25 3.32666L24.25 12.6738Z",
2941
+ fill: color
2942
+ }
2943
+ )
2944
+ ]
2945
+ }
2946
+ );
2947
+ var BackwardIcon_native_default = BackwardIcon;
2922
2948
  function EqualizerIcon({
2923
2949
  size = 18
2924
2950
  }) {
@@ -2942,6 +2968,32 @@ function EqualizerIcon({
2942
2968
  }
2943
2969
  );
2944
2970
  }
2971
+ var ForwardIcon = ({ size = 20, color = "#000000" }) => /* @__PURE__ */ jsxRuntime.jsxs(
2972
+ Svg__default.default,
2973
+ {
2974
+ width: size,
2975
+ height: size,
2976
+ viewBox: "0 0 28 16",
2977
+ fill: "none",
2978
+ children: [
2979
+ /* @__PURE__ */ jsxRuntime.jsx(
2980
+ Svg.Path,
2981
+ {
2982
+ d: "M3.75 3.32618C3.75 2.67874 3.75 2.35502 3.90187 2.17657C4.03417 2.02111 4.23639 1.92491 4.4553 1.91329C4.70658 1.89996 5.0096 2.07953 5.61564 2.43866L13.5023 7.11224C14.0031 7.40899 14.2535 7.55737 14.3407 7.74438C14.417 7.90789 14.417 8.09164 14.3407 8.25514C14.2535 8.44216 14.0031 8.59053 13.5023 8.88728L5.61564 13.5609C5.0096 13.92 4.70658 14.0996 4.4553 14.0862C4.23639 14.0746 4.03417 13.9784 3.90187 13.823C3.75 13.6445 3.75 13.3208 3.75 12.6733L3.75 3.32618Z",
2983
+ fill: color
2984
+ }
2985
+ ),
2986
+ /* @__PURE__ */ jsxRuntime.jsx(
2987
+ Svg.Path,
2988
+ {
2989
+ d: "M13.75 3.32618C13.75 2.67874 13.75 2.35502 13.9019 2.17657C14.0342 2.02111 14.2364 1.92491 14.4553 1.91329C14.7066 1.89996 15.0096 2.07953 15.6156 2.43866L23.5023 7.11224C24.0031 7.40899 24.2535 7.55737 24.3407 7.74438C24.417 7.90789 24.417 8.09164 24.3407 8.25514C24.2535 8.44216 24.0031 8.59053 23.5023 8.88728L15.6156 13.5609C15.0096 13.92 14.7066 14.0996 14.4553 14.0862C14.2364 14.0746 14.0342 13.9784 13.9019 13.823C13.75 13.6445 13.75 13.3208 13.75 12.6733L13.75 3.32618Z",
2990
+ fill: color
2991
+ }
2992
+ )
2993
+ ]
2994
+ }
2995
+ );
2996
+ var ForwardIcon_native_default = ForwardIcon;
2945
2997
  var Film01Icon = ({
2946
2998
  size = 24,
2947
2999
  color = "#000000"
@@ -4785,6 +4837,7 @@ exports.ArrowRightIcon = ArrowRightIcon;
4785
4837
  exports.ArrowUpIcon = ArrowUpIcon;
4786
4838
  exports.ArrowUpIcon01 = ArrowUpIcon01;
4787
4839
  exports.AudiomackIcon = AudiomackIcon_native_default;
4840
+ exports.BackwardIcon = BackwardIcon_native_default;
4788
4841
  exports.BankNote03Icon = BankNote03Icon_native_default;
4789
4842
  exports.BarChart01Icon = BarChart01Icon_native_default;
4790
4843
  exports.BarChart07Icon = BarChart07Icon_native_default;
@@ -4838,6 +4891,7 @@ exports.FlexAlignTopIcon = FlexAlignTopIcon_native_default;
4838
4891
  exports.FolderGradientIcon = FolderGradientIcon_native_default;
4839
4892
  exports.FolderIcon = FolderIcon_native_default;
4840
4893
  exports.FolderPlusIcon = FolderPlusIcon;
4894
+ exports.ForwardIcon = ForwardIcon_native_default;
4841
4895
  exports.GeniusIcon = GeniusIcon_native_default;
4842
4896
  exports.Gift01Icon = Gift01Icon_native_default;
4843
4897
  exports.Globe02Icon = Globe02Icon_native_default;