@mirohq/design-system-icons 1.8.0 → 1.10.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.
package/dist/main.js CHANGED
@@ -78,6 +78,32 @@ const IconAddLineBottom = react.forwardRef(
78
78
  );
79
79
  IconAddLineBottom[designSystemBaseIcon.iconSymbol] = true;
80
80
 
81
+ const IconAddLineLeft = react.forwardRef(
82
+ ({ size = "medium", ...props }, forwardRef2) => {
83
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
84
+ return react.createElement(
85
+ StyledIcon,
86
+ {
87
+ ...props,
88
+ debug,
89
+ "aria-hidden": true,
90
+ size,
91
+ viewBox: "0 0 24 24",
92
+ fill: "none",
93
+ ref: forwardRef2
94
+ },
95
+ /* @__PURE__ */ jsxRuntime.jsx(
96
+ "path",
97
+ {
98
+ fill: "currentColor",
99
+ d: "M14 13h-4v4H8v-4H4v-2h4V7h2v4h4v2Zm7 8h-2V3h2v18Z"
100
+ }
101
+ )
102
+ );
103
+ }
104
+ );
105
+ IconAddLineLeft[designSystemBaseIcon.iconSymbol] = true;
106
+
81
107
  const IconAddLineRight = react.forwardRef(
82
108
  ({ size = "medium", ...props }, forwardRef2) => {
83
109
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -946,6 +972,32 @@ const IconArrowFatUpRight = react.forwardRef(
946
972
  );
947
973
  IconArrowFatUpRight[designSystemBaseIcon.iconSymbol] = true;
948
974
 
975
+ const IconArrowLeftAwayLine = react.forwardRef(
976
+ ({ size = "medium", ...props }, forwardRef2) => {
977
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
978
+ return react.createElement(
979
+ StyledIcon,
980
+ {
981
+ ...props,
982
+ debug,
983
+ "aria-hidden": true,
984
+ size,
985
+ viewBox: "0 0 24 24",
986
+ fill: "none",
987
+ ref: forwardRef2
988
+ },
989
+ /* @__PURE__ */ jsxRuntime.jsx(
990
+ "path",
991
+ {
992
+ fill: "currentColor",
993
+ d: "M11.707 6.707 7.414 11H18v2H7.414l4.293 4.293-1.414 1.414-6-6v-1.414l6-6 1.414 1.414ZM22 19h-2V5h2v14Z"
994
+ }
995
+ )
996
+ );
997
+ }
998
+ );
999
+ IconArrowLeftAwayLine[designSystemBaseIcon.iconSymbol] = true;
1000
+
949
1001
  const IconArrowLeftRightDotted = react.forwardRef(
950
1002
  ({ size = "medium", ...props }, forwardRef2) => {
951
1003
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -972,6 +1024,32 @@ const IconArrowLeftRightDotted = react.forwardRef(
972
1024
  );
973
1025
  IconArrowLeftRightDotted[designSystemBaseIcon.iconSymbol] = true;
974
1026
 
1027
+ const IconArrowLeftTowardLine = react.forwardRef(
1028
+ ({ size = "medium", ...props }, forwardRef2) => {
1029
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1030
+ return react.createElement(
1031
+ StyledIcon,
1032
+ {
1033
+ ...props,
1034
+ debug,
1035
+ "aria-hidden": true,
1036
+ size,
1037
+ viewBox: "0 0 24 24",
1038
+ fill: "none",
1039
+ ref: forwardRef2
1040
+ },
1041
+ /* @__PURE__ */ jsxRuntime.jsx(
1042
+ "path",
1043
+ {
1044
+ fill: "currentColor",
1045
+ d: "M15.707 6.707 11.414 11H21v2h-9.586l4.293 4.293-1.414 1.414-6-6v-1.414l6-6 1.414 1.414ZM6 19H4V5h2v14Z"
1046
+ }
1047
+ )
1048
+ );
1049
+ }
1050
+ );
1051
+ IconArrowLeftTowardLine[designSystemBaseIcon.iconSymbol] = true;
1052
+
975
1053
  const IconArrowLeft = react.forwardRef(
976
1054
  ({ size = "medium", ...props }, forwardRef2) => {
977
1055
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -998,6 +1076,58 @@ const IconArrowLeft = react.forwardRef(
998
1076
  );
999
1077
  IconArrowLeft[designSystemBaseIcon.iconSymbol] = true;
1000
1078
 
1079
+ const IconArrowRightAwayLine = react.forwardRef(
1080
+ ({ size = "medium", ...props }, forwardRef2) => {
1081
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1082
+ return react.createElement(
1083
+ StyledIcon,
1084
+ {
1085
+ ...props,
1086
+ debug,
1087
+ "aria-hidden": true,
1088
+ size,
1089
+ viewBox: "0 0 24 24",
1090
+ fill: "none",
1091
+ ref: forwardRef2
1092
+ },
1093
+ /* @__PURE__ */ jsxRuntime.jsx(
1094
+ "path",
1095
+ {
1096
+ fill: "currentColor",
1097
+ d: "M21.769 11.36v1.28l-5 6-1.538-1.28L18.865 13H8v-2h10.865l-3.634-4.36 1.538-1.28 5 6ZM6 19H4V5h2v14Z"
1098
+ }
1099
+ )
1100
+ );
1101
+ }
1102
+ );
1103
+ IconArrowRightAwayLine[designSystemBaseIcon.iconSymbol] = true;
1104
+
1105
+ const IconArrowRightTowardLine = react.forwardRef(
1106
+ ({ size = "medium", ...props }, forwardRef2) => {
1107
+ const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
1108
+ return react.createElement(
1109
+ StyledIcon,
1110
+ {
1111
+ ...props,
1112
+ debug,
1113
+ "aria-hidden": true,
1114
+ size,
1115
+ viewBox: "0 0 24 24",
1116
+ fill: "none",
1117
+ ref: forwardRef2
1118
+ },
1119
+ /* @__PURE__ */ jsxRuntime.jsx(
1120
+ "path",
1121
+ {
1122
+ fill: "currentColor",
1123
+ d: "M17.769 11.36v1.28l-5 6-1.538-1.28L14.865 13H4v-2h10.865l-3.634-4.36 1.538-1.28 5 6ZM22 19h-2V5h2v14Z"
1124
+ }
1125
+ )
1126
+ );
1127
+ }
1128
+ );
1129
+ IconArrowRightTowardLine[designSystemBaseIcon.iconSymbol] = true;
1130
+
1001
1131
  const IconArrowRight = react.forwardRef(
1002
1132
  ({ size = "medium", ...props }, forwardRef2) => {
1003
1133
  const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
@@ -15004,6 +15134,7 @@ IconWifi[designSystemBaseIcon.iconSymbol] = true;
15004
15134
 
15005
15135
  exports.IconActivity = IconActivity;
15006
15136
  exports.IconAddLineBottom = IconAddLineBottom;
15137
+ exports.IconAddLineLeft = IconAddLineLeft;
15007
15138
  exports.IconAddLineRight = IconAddLineRight;
15008
15139
  exports.IconAiText = IconAiText;
15009
15140
  exports.IconAlignBottom = IconAlignBottom;
@@ -15038,8 +15169,12 @@ exports.IconArrowFatLeftRight = IconArrowFatLeftRight;
15038
15169
  exports.IconArrowFatRight = IconArrowFatRight;
15039
15170
  exports.IconArrowFatUpRight = IconArrowFatUpRight;
15040
15171
  exports.IconArrowLeft = IconArrowLeft;
15172
+ exports.IconArrowLeftAwayLine = IconArrowLeftAwayLine;
15041
15173
  exports.IconArrowLeftRightDotted = IconArrowLeftRightDotted;
15174
+ exports.IconArrowLeftTowardLine = IconArrowLeftTowardLine;
15042
15175
  exports.IconArrowRight = IconArrowRight;
15176
+ exports.IconArrowRightAwayLine = IconArrowRightAwayLine;
15177
+ exports.IconArrowRightTowardLine = IconArrowRightTowardLine;
15043
15178
  exports.IconArrowUp = IconArrowUp;
15044
15179
  exports.IconArrowUpCircle = IconArrowUpCircle;
15045
15180
  exports.IconArrowUpLeft = IconArrowUpLeft;