@webstudio-is/icons 0.235.0 → 0.237.0

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.
@@ -26,6 +26,7 @@ var AlignSelfStartIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" vi
26
26
  var AlignSelfStretchIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8.651 3.447h-1.3a1.3 1.3 0 0 0-1.3 1.3v6.5a1.3 1.3 0 0 0 1.3 1.299h1.3a1.3 1.3 0 0 0 1.3-1.3v-6.5a1.3 1.3 0 0 0-1.3-1.3ZM14.499 1.491h-13M14.501 14.509h-13"/></svg>`;
27
27
  var AlignStartHorizontalIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M5.4 4.097H4.1c-.72 0-1.302.582-1.302 1.3v7.807c0 .719.583 1.301 1.301 1.301H5.4c.719 0 1.301-.582 1.301-1.3V5.397c0-.719-.582-1.301-1.3-1.301ZM11.906 4.097h-1.301c-.719 0-1.301.582-1.301 1.3v3.254c0 .718.582 1.3 1.3 1.3h1.302c.718 0 1.3-.582 1.3-1.3V5.398c0-.719-.582-1.301-1.3-1.301ZM1.5 2h13"/></svg>`;
28
28
  var AnimationGroupIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M4.5 8.3C6.3 7.7 7.8 8 9.3 11c.3-1.8 1.2-4.5 2.1-6M4.208 1.5H2.944A1.444 1.444 0 0 0 1.5 2.944v1.264m13 0V2.944A1.444 1.444 0 0 0 13.056 1.5h-1.264M14.5 13.056c0 .023 0 .046-.002.069M11.792 14.5h1.264a1.444 1.444 0 0 0 1.442-1.375m0 0v-1.333m-12.998 0v1.264A1.444 1.444 0 0 0 2.944 14.5h1.264m2.709-13h2.166m-2.166 13h2.166M1.5 6.917v2.166m13-2.166v2.166"/></svg>`;
29
+ var ArrowDownAZIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width=".667" d="m2 10.667 2.667 2.666 2.666-2.666M4.667 13.333V2.667M13.333 5.333H10M10 6.667V4.333a1.667 1.667 0 1 1 3.333 0v2.334M10 9.333h3.333l-3.333 4h3.333"/></svg>`;
29
30
  var ArrowDownIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M8 3.333v9.334M12.667 8 8 12.667 3.333 8"/></svg>`;
30
31
  var ArrowLeftIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" d="M12.667 8H3.333M8 3.333 3.333 8 8 12.667"/></svg>`;
31
32
  var ArrowRightLeftIcon = `<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 16 16" width="100%" height="100%" style="display: block;"><path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width=".667" d="m11 2 2.667 2.667m0 0L11 7.333m2.667-2.666H3M5.667 14 3 11.333m0 0 2.667-2.666M3 11.333h10.667"/></svg>`;
@@ -247,6 +248,7 @@ export {
247
248
  AlignSelfStretchIcon,
248
249
  AlignStartHorizontalIcon,
249
250
  AnimationGroupIcon,
251
+ ArrowDownAZIcon,
250
252
  ArrowDownIcon,
251
253
  ArrowLeftIcon,
252
254
  ArrowRightIcon,
package/lib/index.js CHANGED
@@ -881,6 +881,33 @@ var AnimationGroupIcon = forwardRef(
881
881
  }
882
882
  );
883
883
  AnimationGroupIcon.displayName = "AnimationGroupIcon";
884
+ var ArrowDownAZIcon = forwardRef(
885
+ ({ fill = "none", size = 16, ...props }, forwardedRef) => {
886
+ return /* @__PURE__ */ jsx(
887
+ "svg",
888
+ {
889
+ xmlns: "http://www.w3.org/2000/svg",
890
+ viewBox: "0 0 16 16",
891
+ width: size,
892
+ height: size,
893
+ fill,
894
+ ...props,
895
+ ref: forwardedRef,
896
+ children: /* @__PURE__ */ jsx(
897
+ "path",
898
+ {
899
+ stroke: "#000",
900
+ strokeLinecap: "round",
901
+ strokeLinejoin: "round",
902
+ strokeWidth: ".667",
903
+ d: "m2 10.667 2.667 2.666 2.666-2.666M4.667 13.333V2.667M13.333 5.333H10M10 6.667V4.333a1.667 1.667 0 1 1 3.333 0v2.334M10 9.333h3.333l-3.333 4h3.333"
904
+ }
905
+ )
906
+ }
907
+ );
908
+ }
909
+ );
910
+ ArrowDownAZIcon.displayName = "ArrowDownAZIcon";
884
911
  var ArrowDownIcon = forwardRef(
885
912
  ({ fill = "none", size = 16, ...props }, forwardedRef) => {
886
913
  return /* @__PURE__ */ jsx(
@@ -7256,6 +7283,7 @@ export {
7256
7283
  AlignSelfStretchIcon,
7257
7284
  AlignStartHorizontalIcon,
7258
7285
  AnimationGroupIcon,
7286
+ ArrowDownAZIcon,
7259
7287
  ArrowDownIcon,
7260
7288
  ArrowLeftIcon,
7261
7289
  ArrowRightIcon,
@@ -26,6 +26,7 @@ export declare const AlignSelfStartIcon: IconComponent;
26
26
  export declare const AlignSelfStretchIcon: IconComponent;
27
27
  export declare const AlignStartHorizontalIcon: IconComponent;
28
28
  export declare const AnimationGroupIcon: IconComponent;
29
+ export declare const ArrowDownAZIcon: IconComponent;
29
30
  export declare const ArrowDownIcon: IconComponent;
30
31
  export declare const ArrowLeftIcon: IconComponent;
31
32
  export declare const ArrowRightLeftIcon: IconComponent;
@@ -25,6 +25,7 @@ export declare const AlignSelfStartIcon = "<svg xmlns=\"http://www.w3.org/2000/s
25
25
  export declare const AlignSelfStretchIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8.651 3.447h-1.3a1.3 1.3 0 0 0-1.3 1.3v6.5a1.3 1.3 0 0 0 1.3 1.299h1.3a1.3 1.3 0 0 0 1.3-1.3v-6.5a1.3 1.3 0 0 0-1.3-1.3ZM14.499 1.491h-13M14.501 14.509h-13\"/></svg>";
26
26
  export declare const AlignStartHorizontalIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M5.4 4.097H4.1c-.72 0-1.302.582-1.302 1.3v7.807c0 .719.583 1.301 1.301 1.301H5.4c.719 0 1.301-.582 1.301-1.3V5.397c0-.719-.582-1.301-1.3-1.301ZM11.906 4.097h-1.301c-.719 0-1.301.582-1.301 1.3v3.254c0 .718.582 1.3 1.3 1.3h1.302c.718 0 1.3-.582 1.3-1.3V5.398c0-.719-.582-1.301-1.3-1.301ZM1.5 2h13\"/></svg>";
27
27
  export declare const AnimationGroupIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M4.5 8.3C6.3 7.7 7.8 8 9.3 11c.3-1.8 1.2-4.5 2.1-6M4.208 1.5H2.944A1.444 1.444 0 0 0 1.5 2.944v1.264m13 0V2.944A1.444 1.444 0 0 0 13.056 1.5h-1.264M14.5 13.056c0 .023 0 .046-.002.069M11.792 14.5h1.264a1.444 1.444 0 0 0 1.442-1.375m0 0v-1.333m-12.998 0v1.264A1.444 1.444 0 0 0 2.944 14.5h1.264m2.709-13h2.166m-2.166 13h2.166M1.5 6.917v2.166m13-2.166v2.166\"/></svg>";
28
+ export declare const ArrowDownAZIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"#000\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\".667\" d=\"m2 10.667 2.667 2.666 2.666-2.666M4.667 13.333V2.667M13.333 5.333H10M10 6.667V4.333a1.667 1.667 0 1 1 3.333 0v2.334M10 9.333h3.333l-3.333 4h3.333\"/></svg>";
28
29
  export declare const ArrowDownIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M8 3.333v9.334M12.667 8 8 12.667 3.333 8\"/></svg>";
29
30
  export declare const ArrowLeftIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" d=\"M12.667 8H3.333M8 3.333 3.333 8 8 12.667\"/></svg>";
30
31
  export declare const ArrowRightLeftIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\" viewBox=\"0 0 16 16\" width=\"100%\" height=\"100%\" style=\"display: block;\"><path stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\".667\" d=\"m11 2 2.667 2.667m0 0L11 7.333m2.667-2.666H3M5.667 14 3 11.333m0 0 2.667-2.666M3 11.333h10.667\"/></svg>";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webstudio-is/icons",
3
- "version": "0.235.0",
3
+ "version": "0.237.0",
4
4
  "description": "Webstudio Icons",
5
5
  "author": "Webstudio <github@webstudio.is>",
6
6
  "homepage": "https://webstudio.is",