@mirohq/design-system-icons 1.8.0 → 1.9.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 +108 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +105 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -1
- package/package.json +4 -4
- package/react/arrow-left-away-line.tsx +34 -0
- package/react/arrow-left-toward-line.tsx +34 -0
- package/react/arrow-right-away-line.tsx +34 -0
- package/react/arrow-right-toward-line.tsx +34 -0
- package/react/index.ts +4 -0
- package/svg/24/arrow-left-away-line.svg +2 -0
- package/svg/24/arrow-left-toward-line.svg +2 -0
- package/svg/24/arrow-right-away-line.svg +2 -0
- package/svg/24/arrow-right-toward-line.svg +2 -0
- package/svg/meta.json +69 -0
package/dist/main.js
CHANGED
|
@@ -946,6 +946,32 @@ const IconArrowFatUpRight = react.forwardRef(
|
|
|
946
946
|
);
|
|
947
947
|
IconArrowFatUpRight[designSystemBaseIcon.iconSymbol] = true;
|
|
948
948
|
|
|
949
|
+
const IconArrowLeftAwayLine = react.forwardRef(
|
|
950
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
951
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
952
|
+
return react.createElement(
|
|
953
|
+
StyledIcon,
|
|
954
|
+
{
|
|
955
|
+
...props,
|
|
956
|
+
debug,
|
|
957
|
+
"aria-hidden": true,
|
|
958
|
+
size,
|
|
959
|
+
viewBox: "0 0 24 24",
|
|
960
|
+
fill: "none",
|
|
961
|
+
ref: forwardRef2
|
|
962
|
+
},
|
|
963
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
964
|
+
"path",
|
|
965
|
+
{
|
|
966
|
+
fill: "currentColor",
|
|
967
|
+
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"
|
|
968
|
+
}
|
|
969
|
+
)
|
|
970
|
+
);
|
|
971
|
+
}
|
|
972
|
+
);
|
|
973
|
+
IconArrowLeftAwayLine[designSystemBaseIcon.iconSymbol] = true;
|
|
974
|
+
|
|
949
975
|
const IconArrowLeftRightDotted = react.forwardRef(
|
|
950
976
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
951
977
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -972,6 +998,32 @@ const IconArrowLeftRightDotted = react.forwardRef(
|
|
|
972
998
|
);
|
|
973
999
|
IconArrowLeftRightDotted[designSystemBaseIcon.iconSymbol] = true;
|
|
974
1000
|
|
|
1001
|
+
const IconArrowLeftTowardLine = react.forwardRef(
|
|
1002
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1003
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1004
|
+
return react.createElement(
|
|
1005
|
+
StyledIcon,
|
|
1006
|
+
{
|
|
1007
|
+
...props,
|
|
1008
|
+
debug,
|
|
1009
|
+
"aria-hidden": true,
|
|
1010
|
+
size,
|
|
1011
|
+
viewBox: "0 0 24 24",
|
|
1012
|
+
fill: "none",
|
|
1013
|
+
ref: forwardRef2
|
|
1014
|
+
},
|
|
1015
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1016
|
+
"path",
|
|
1017
|
+
{
|
|
1018
|
+
fill: "currentColor",
|
|
1019
|
+
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"
|
|
1020
|
+
}
|
|
1021
|
+
)
|
|
1022
|
+
);
|
|
1023
|
+
}
|
|
1024
|
+
);
|
|
1025
|
+
IconArrowLeftTowardLine[designSystemBaseIcon.iconSymbol] = true;
|
|
1026
|
+
|
|
975
1027
|
const IconArrowLeft = react.forwardRef(
|
|
976
1028
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
977
1029
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -998,6 +1050,58 @@ const IconArrowLeft = react.forwardRef(
|
|
|
998
1050
|
);
|
|
999
1051
|
IconArrowLeft[designSystemBaseIcon.iconSymbol] = true;
|
|
1000
1052
|
|
|
1053
|
+
const IconArrowRightAwayLine = react.forwardRef(
|
|
1054
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1055
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1056
|
+
return react.createElement(
|
|
1057
|
+
StyledIcon,
|
|
1058
|
+
{
|
|
1059
|
+
...props,
|
|
1060
|
+
debug,
|
|
1061
|
+
"aria-hidden": true,
|
|
1062
|
+
size,
|
|
1063
|
+
viewBox: "0 0 24 24",
|
|
1064
|
+
fill: "none",
|
|
1065
|
+
ref: forwardRef2
|
|
1066
|
+
},
|
|
1067
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1068
|
+
"path",
|
|
1069
|
+
{
|
|
1070
|
+
fill: "currentColor",
|
|
1071
|
+
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"
|
|
1072
|
+
}
|
|
1073
|
+
)
|
|
1074
|
+
);
|
|
1075
|
+
}
|
|
1076
|
+
);
|
|
1077
|
+
IconArrowRightAwayLine[designSystemBaseIcon.iconSymbol] = true;
|
|
1078
|
+
|
|
1079
|
+
const IconArrowRightTowardLine = 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: "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"
|
|
1098
|
+
}
|
|
1099
|
+
)
|
|
1100
|
+
);
|
|
1101
|
+
}
|
|
1102
|
+
);
|
|
1103
|
+
IconArrowRightTowardLine[designSystemBaseIcon.iconSymbol] = true;
|
|
1104
|
+
|
|
1001
1105
|
const IconArrowRight = react.forwardRef(
|
|
1002
1106
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1003
1107
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15038,8 +15142,12 @@ exports.IconArrowFatLeftRight = IconArrowFatLeftRight;
|
|
|
15038
15142
|
exports.IconArrowFatRight = IconArrowFatRight;
|
|
15039
15143
|
exports.IconArrowFatUpRight = IconArrowFatUpRight;
|
|
15040
15144
|
exports.IconArrowLeft = IconArrowLeft;
|
|
15145
|
+
exports.IconArrowLeftAwayLine = IconArrowLeftAwayLine;
|
|
15041
15146
|
exports.IconArrowLeftRightDotted = IconArrowLeftRightDotted;
|
|
15147
|
+
exports.IconArrowLeftTowardLine = IconArrowLeftTowardLine;
|
|
15042
15148
|
exports.IconArrowRight = IconArrowRight;
|
|
15149
|
+
exports.IconArrowRightAwayLine = IconArrowRightAwayLine;
|
|
15150
|
+
exports.IconArrowRightTowardLine = IconArrowRightTowardLine;
|
|
15043
15151
|
exports.IconArrowUp = IconArrowUp;
|
|
15044
15152
|
exports.IconArrowUpCircle = IconArrowUpCircle;
|
|
15045
15153
|
exports.IconArrowUpLeft = IconArrowUpLeft;
|