@mirohq/design-system-icons 1.14.0 → 1.15.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 +139 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +135 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +11 -1
- package/package.json +3 -3
- package/react/arrow-mobile.tsx +34 -0
- package/react/cross-mobile.tsx +34 -0
- package/react/digit.tsx +34 -0
- package/react/index.ts +5 -0
- package/react/percent.tsx +36 -0
- package/react/progress-bar.tsx +36 -0
- package/svg/24/arrow-mobile.svg +2 -0
- package/svg/24/cross-mobile.svg +2 -0
- package/svg/24/digit.svg +2 -0
- package/svg/24/percent.svg +2 -0
- package/svg/24/progress-bar.svg +2 -0
- package/svg/meta.json +70 -0
package/dist/main.js
CHANGED
|
@@ -1128,6 +1128,32 @@ const IconArrowLeft = react.forwardRef(
|
|
|
1128
1128
|
);
|
|
1129
1129
|
IconArrowLeft[designSystemBaseIcon.iconSymbol] = true;
|
|
1130
1130
|
|
|
1131
|
+
const IconArrowMobile = react.forwardRef(
|
|
1132
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1133
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
1134
|
+
return react.createElement(
|
|
1135
|
+
StyledIcon,
|
|
1136
|
+
{
|
|
1137
|
+
...props,
|
|
1138
|
+
debug,
|
|
1139
|
+
"aria-hidden": true,
|
|
1140
|
+
size,
|
|
1141
|
+
viewBox: "0 0 24 24",
|
|
1142
|
+
fill: "none",
|
|
1143
|
+
ref: forwardRef2
|
|
1144
|
+
},
|
|
1145
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1146
|
+
"path",
|
|
1147
|
+
{
|
|
1148
|
+
fill: "currentColor",
|
|
1149
|
+
d: "M14 16v2h-4v-2h4Zm-9 3v-1h2v1a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V5a1 1 0 0 0-.898-.995L16 4H8a1 1 0 0 0-1 1v1H5V5a3 3 0 0 1 3-3h8l.154.004A3 3 0 0 1 19 5v14a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3Zm3.469-7.992H8.5v.037l.269.323v1.28l-.269.322v.038h-.031l-2.841 3.408-1.536-1.28 1.773-2.128L1 13v-1.992h4.865L4.092 8.88 5.628 7.6l2.84 3.408Z"
|
|
1150
|
+
}
|
|
1151
|
+
)
|
|
1152
|
+
);
|
|
1153
|
+
}
|
|
1154
|
+
);
|
|
1155
|
+
IconArrowMobile[designSystemBaseIcon.iconSymbol] = true;
|
|
1156
|
+
|
|
1131
1157
|
const IconArrowRightAwayLine = react.forwardRef(
|
|
1132
1158
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1133
1159
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -4390,6 +4416,32 @@ const IconCrossFat = react.forwardRef(
|
|
|
4390
4416
|
);
|
|
4391
4417
|
IconCrossFat[designSystemBaseIcon.iconSymbol] = true;
|
|
4392
4418
|
|
|
4419
|
+
const IconCrossMobile = react.forwardRef(
|
|
4420
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
4421
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
4422
|
+
return react.createElement(
|
|
4423
|
+
StyledIcon,
|
|
4424
|
+
{
|
|
4425
|
+
...props,
|
|
4426
|
+
debug,
|
|
4427
|
+
"aria-hidden": true,
|
|
4428
|
+
size,
|
|
4429
|
+
viewBox: "0 0 24 24",
|
|
4430
|
+
fill: "none",
|
|
4431
|
+
ref: forwardRef2
|
|
4432
|
+
},
|
|
4433
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
4434
|
+
"path",
|
|
4435
|
+
{
|
|
4436
|
+
fill: "currentColor",
|
|
4437
|
+
d: "M5 19V5a3 3 0 0 1 3-3h4v2H8a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1v-8h2v8a3 3 0 0 1-3 3H8a3 3 0 0 1-3-3Zm9-3v2h-4v-2h4Zm7.707-13.293L19.414 5l2.293 2.293-1.414 1.414L18 6.414l-2.293 2.293-1.414-1.414L16.586 5l-2.293-2.293 1.414-1.414L18 3.586l2.293-2.293 1.414 1.414Z"
|
|
4438
|
+
}
|
|
4439
|
+
)
|
|
4440
|
+
);
|
|
4441
|
+
}
|
|
4442
|
+
);
|
|
4443
|
+
IconCrossMobile[designSystemBaseIcon.iconSymbol] = true;
|
|
4444
|
+
|
|
4393
4445
|
const IconCrossSquare = react.forwardRef(
|
|
4394
4446
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
4395
4447
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -5052,6 +5104,32 @@ const IconDiagramming = react.forwardRef(
|
|
|
5052
5104
|
);
|
|
5053
5105
|
IconDiagramming[designSystemBaseIcon.iconSymbol] = true;
|
|
5054
5106
|
|
|
5107
|
+
const IconDigit = react.forwardRef(
|
|
5108
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
5109
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5110
|
+
return react.createElement(
|
|
5111
|
+
StyledIcon,
|
|
5112
|
+
{
|
|
5113
|
+
...props,
|
|
5114
|
+
debug,
|
|
5115
|
+
"aria-hidden": true,
|
|
5116
|
+
size,
|
|
5117
|
+
viewBox: "0 0 24 24",
|
|
5118
|
+
fill: "none",
|
|
5119
|
+
ref: forwardRef2
|
|
5120
|
+
},
|
|
5121
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5122
|
+
"path",
|
|
5123
|
+
{
|
|
5124
|
+
fill: "currentColor",
|
|
5125
|
+
d: "M8.235 6v11H11v2H3v-2h3.235V7.543L3.408 8.808 2.592 6.98l4.235-1.894L8.235 6Zm9.815-1A3.95 3.95 0 0 1 22 8.95c0 2.023-1.443 3.62-3.097 4.334-1.66.717-3.33 1.881-3.783 3.716h6.38v2H14l-1-1c0-3.718 3.034-5.656 5.111-6.553C19.246 10.957 20 9.964 20 8.95A1.95 1.95 0 0 0 18.05 7h-.621A2.429 2.429 0 0 0 15 9.429h-2A4.429 4.429 0 0 1 17.429 5h.62Z"
|
|
5126
|
+
}
|
|
5127
|
+
)
|
|
5128
|
+
);
|
|
5129
|
+
}
|
|
5130
|
+
);
|
|
5131
|
+
IconDigit[designSystemBaseIcon.iconSymbol] = true;
|
|
5132
|
+
|
|
5055
5133
|
const IconDistributeHorizontal = react.forwardRef(
|
|
5056
5134
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
5057
5135
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -9354,6 +9432,34 @@ const IconPeopleList = react.forwardRef(
|
|
|
9354
9432
|
);
|
|
9355
9433
|
IconPeopleList[designSystemBaseIcon.iconSymbol] = true;
|
|
9356
9434
|
|
|
9435
|
+
const IconPercent = react.forwardRef(
|
|
9436
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
9437
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
9438
|
+
return react.createElement(
|
|
9439
|
+
StyledIcon,
|
|
9440
|
+
{
|
|
9441
|
+
...props,
|
|
9442
|
+
debug,
|
|
9443
|
+
"aria-hidden": true,
|
|
9444
|
+
size,
|
|
9445
|
+
viewBox: "0 0 24 24",
|
|
9446
|
+
fill: "none",
|
|
9447
|
+
ref: forwardRef2
|
|
9448
|
+
},
|
|
9449
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
9450
|
+
"path",
|
|
9451
|
+
{
|
|
9452
|
+
fill: "currentColor",
|
|
9453
|
+
fillRule: "evenodd",
|
|
9454
|
+
d: "M18.29 2.542 7.467 22.414l-1.757-.956L16.532 1.586l1.757.956ZM17.5 13a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Zm0 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3ZM6.5 4a3.5 3.5 0 1 1 0 7 3.5 3.5 0 0 1 0-7Zm0 2a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
|
|
9455
|
+
clipRule: "evenodd"
|
|
9456
|
+
}
|
|
9457
|
+
)
|
|
9458
|
+
);
|
|
9459
|
+
}
|
|
9460
|
+
);
|
|
9461
|
+
IconPercent[designSystemBaseIcon.iconSymbol] = true;
|
|
9462
|
+
|
|
9357
9463
|
const IconPersonInCircle = react.forwardRef(
|
|
9358
9464
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
9359
9465
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -9990,6 +10096,34 @@ const IconPrevious = react.forwardRef(
|
|
|
9990
10096
|
);
|
|
9991
10097
|
IconPrevious[designSystemBaseIcon.iconSymbol] = true;
|
|
9992
10098
|
|
|
10099
|
+
const IconProgressBar = react.forwardRef(
|
|
10100
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
10101
|
+
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10102
|
+
return react.createElement(
|
|
10103
|
+
StyledIcon,
|
|
10104
|
+
{
|
|
10105
|
+
...props,
|
|
10106
|
+
debug,
|
|
10107
|
+
"aria-hidden": true,
|
|
10108
|
+
size,
|
|
10109
|
+
viewBox: "0 0 24 24",
|
|
10110
|
+
fill: "none",
|
|
10111
|
+
ref: forwardRef2
|
|
10112
|
+
},
|
|
10113
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10114
|
+
"path",
|
|
10115
|
+
{
|
|
10116
|
+
fill: "currentColor",
|
|
10117
|
+
fillRule: "evenodd",
|
|
10118
|
+
d: "m22 8 1 1v5l-1 1H2l-1-1V9l1-1h20Zm-12 5h11v-3H10v3Z",
|
|
10119
|
+
clipRule: "evenodd"
|
|
10120
|
+
}
|
|
10121
|
+
)
|
|
10122
|
+
);
|
|
10123
|
+
}
|
|
10124
|
+
);
|
|
10125
|
+
IconProgressBar[designSystemBaseIcon.iconSymbol] = true;
|
|
10126
|
+
|
|
9993
10127
|
const IconProhibit = react.forwardRef(
|
|
9994
10128
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
9995
10129
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15770,6 +15904,7 @@ exports.IconArrowLeft = IconArrowLeft;
|
|
|
15770
15904
|
exports.IconArrowLeftAwayLine = IconArrowLeftAwayLine;
|
|
15771
15905
|
exports.IconArrowLeftRightDotted = IconArrowLeftRightDotted;
|
|
15772
15906
|
exports.IconArrowLeftTowardLine = IconArrowLeftTowardLine;
|
|
15907
|
+
exports.IconArrowMobile = IconArrowMobile;
|
|
15773
15908
|
exports.IconArrowRight = IconArrowRight;
|
|
15774
15909
|
exports.IconArrowRightAwayLine = IconArrowRightAwayLine;
|
|
15775
15910
|
exports.IconArrowRightTowardLine = IconArrowRightTowardLine;
|
|
@@ -15894,6 +16029,7 @@ exports.IconCrop = IconCrop;
|
|
|
15894
16029
|
exports.IconCross = IconCross;
|
|
15895
16030
|
exports.IconCrossCircle = IconCrossCircle;
|
|
15896
16031
|
exports.IconCrossFat = IconCrossFat;
|
|
16032
|
+
exports.IconCrossMobile = IconCrossMobile;
|
|
15897
16033
|
exports.IconCrossSquare = IconCrossSquare;
|
|
15898
16034
|
exports.IconCube = IconCube;
|
|
15899
16035
|
exports.IconCursor = IconCursor;
|
|
@@ -15918,6 +16054,7 @@ exports.IconDiagramCardTeam = IconDiagramCardTeam;
|
|
|
15918
16054
|
exports.IconDiagramCardUser = IconDiagramCardUser;
|
|
15919
16055
|
exports.IconDiagramming = IconDiagramming;
|
|
15920
16056
|
exports.IconDiagrammingShapes = IconDiagrammingShapes;
|
|
16057
|
+
exports.IconDigit = IconDigit;
|
|
15921
16058
|
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
15922
16059
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
15923
16060
|
exports.IconDocFormat = IconDocFormat;
|
|
@@ -16080,6 +16217,7 @@ exports.IconPenTip = IconPenTip;
|
|
|
16080
16217
|
exports.IconPenUnderline = IconPenUnderline;
|
|
16081
16218
|
exports.IconPentagon = IconPentagon;
|
|
16082
16219
|
exports.IconPeopleList = IconPeopleList;
|
|
16220
|
+
exports.IconPercent = IconPercent;
|
|
16083
16221
|
exports.IconPersonInCircle = IconPersonInCircle;
|
|
16084
16222
|
exports.IconPhoneFilled = IconPhoneFilled;
|
|
16085
16223
|
exports.IconPixelEraser = IconPixelEraser;
|
|
@@ -16104,6 +16242,7 @@ exports.IconPresentationNumberOne = IconPresentationNumberOne;
|
|
|
16104
16242
|
exports.IconPresentationPlay = IconPresentationPlay;
|
|
16105
16243
|
exports.IconPresentationPlus = IconPresentationPlus;
|
|
16106
16244
|
exports.IconPrevious = IconPrevious;
|
|
16245
|
+
exports.IconProgressBar = IconProgressBar;
|
|
16107
16246
|
exports.IconProhibit = IconProhibit;
|
|
16108
16247
|
exports.IconProtoButton = IconProtoButton;
|
|
16109
16248
|
exports.IconProtoCheckbox = IconProtoCheckbox;
|