@mirohq/design-system-icons 0.49.0 → 0.50.1
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 +121 -42
- package/dist/main.js.map +1 -1
- package/dist/module.js +114 -35
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +10 -10
- package/package.json +4 -4
- package/react/{columns.tsx → columns-format.tsx} +9 -3
- package/react/{diagramming.tsx → diagramming-format.tsx} +15 -3
- package/react/doc-format.tsx +42 -0
- package/react/{doc.tsx → external-format.tsx} +9 -3
- package/react/index.ts +8 -8
- package/react/{prototype.tsx → prototype-format.tsx} +9 -3
- package/react/{slide.tsx → slide-format.tsx} +7 -3
- package/react/{external.tsx → table-format.tsx} +9 -3
- package/react/timeline-format.tsx +42 -0
- package/svg/24/columns-format.svg +2 -0
- package/svg/24/diagramming-format.svg +2 -0
- package/svg/24/doc-format.svg +2 -0
- package/svg/24/external-format.svg +2 -0
- package/svg/24/prototype-format.svg +2 -0
- package/svg/24/slide-format.svg +2 -0
- package/svg/24/table-format.svg +2 -0
- package/svg/24/timeline-format.svg +2 -0
- package/svg/meta.json +14 -9
- package/react/table.tsx +0 -36
- package/react/timeline.tsx +0 -36
- package/svg/24/columns.svg +0 -2
- package/svg/24/diagramming.svg +0 -2
- package/svg/24/doc.svg +0 -2
- package/svg/24/external.svg +0 -2
- package/svg/24/prototype.svg +0 -2
- package/svg/24/slide.svg +0 -2
- package/svg/24/table.svg +0 -2
- package/svg/24/timeline.svg +0 -2
package/dist/main.js
CHANGED
|
@@ -3907,7 +3907,7 @@ const IconCoins = react.forwardRef(
|
|
|
3907
3907
|
);
|
|
3908
3908
|
IconCoins[designSystemBaseIcon.iconSymbol] = true;
|
|
3909
3909
|
|
|
3910
|
-
const
|
|
3910
|
+
const IconColumnsFormat = react.forwardRef(
|
|
3911
3911
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3912
3912
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
3913
3913
|
return react.createElement(
|
|
@@ -3924,19 +3924,27 @@ const IconColumnsThree = react.forwardRef(
|
|
|
3924
3924
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3925
3925
|
"path",
|
|
3926
3926
|
{
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3927
|
+
fill: "currentColor",
|
|
3928
|
+
fillRule: "evenodd",
|
|
3929
|
+
d: "M2 5c0-1.6568 1.3432-3 3-3h8v17c0 1.6569-1.3431 3-3 3h-5c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h5c.5523 0 1-.4477 1-1v-15h-6Z",
|
|
3930
|
+
clipRule: "evenodd"
|
|
3931
|
+
}
|
|
3932
|
+
),
|
|
3933
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3934
|
+
"path",
|
|
3935
|
+
{
|
|
3936
|
+
fill: "currentColor",
|
|
3937
|
+
fillRule: "evenodd",
|
|
3938
|
+
d: "M11 2h8c1.6569 0 3 1.3432 3 3v8c0 1.6569-1.3431 3-3 3h-8v-14Zm2 2v10h6c.5523 0 1-.4477 1-1v-8c0-.5523-.4477-1-1-1h-6Z",
|
|
3939
|
+
clipRule: "evenodd"
|
|
3932
3940
|
}
|
|
3933
3941
|
)
|
|
3934
3942
|
);
|
|
3935
3943
|
}
|
|
3936
3944
|
);
|
|
3937
|
-
|
|
3945
|
+
IconColumnsFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
3938
3946
|
|
|
3939
|
-
const
|
|
3947
|
+
const IconColumnsThree = react.forwardRef(
|
|
3940
3948
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3941
3949
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
3942
3950
|
return react.createElement(
|
|
@@ -3953,16 +3961,17 @@ const IconColumns = react.forwardRef(
|
|
|
3953
3961
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
3954
3962
|
"path",
|
|
3955
3963
|
{
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3964
|
+
stroke: "currentColor",
|
|
3965
|
+
strokeLinecap: "round",
|
|
3966
|
+
strokeLinejoin: "round",
|
|
3967
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3968
|
+
d: "M7 20h-4v-16h4m0 16v-16m0 16h10m-10-16h10m0 0h4v16h-4m0-16v16"
|
|
3960
3969
|
}
|
|
3961
3970
|
)
|
|
3962
3971
|
);
|
|
3963
3972
|
}
|
|
3964
3973
|
);
|
|
3965
|
-
|
|
3974
|
+
IconColumnsThree[designSystemBaseIcon.iconSymbol] = true;
|
|
3966
3975
|
|
|
3967
3976
|
const IconCommentGroup = react.forwardRef(
|
|
3968
3977
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -5120,7 +5129,7 @@ const IconDiagramCardUser = react.forwardRef(
|
|
|
5120
5129
|
);
|
|
5121
5130
|
IconDiagramCardUser[designSystemBaseIcon.iconSymbol] = true;
|
|
5122
5131
|
|
|
5123
|
-
const
|
|
5132
|
+
const IconDiagrammingFormat = react.forwardRef(
|
|
5124
5133
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5125
5134
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5126
5135
|
return react.createElement(
|
|
@@ -5139,14 +5148,32 @@ const IconDiagramming = react.forwardRef(
|
|
|
5139
5148
|
{
|
|
5140
5149
|
fill: "currentColor",
|
|
5141
5150
|
fillRule: "evenodd",
|
|
5142
|
-
d: "M13 4.5c0-1.3807 1.1193-2.5 2.5-2.5h4c1.3807 0 2.5 1.1193 2.5 2.5v4c0 1.3807-1.1193 2.5-2.5 2.5h-4c-1.3807 0-2.5-1.1193-2.5-2.5v-
|
|
5151
|
+
d: "M13 4.5c0-1.3807 1.1193-2.5 2.5-2.5h4c1.3807 0 2.5 1.1193 2.5 2.5v4c0 1.3807-1.1193 2.5-2.5 2.5h-4c-1.3807 0-2.5-1.1193-2.5-2.5v-4Zm2.5-.5a.5.5 0 0 0-.5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 0-.5-.5h-4ZM7 14c-1.6569 0-3 1.3431-3 3s1.3431 3 3 3 3-1.3431 3-3-1.3431-3-3-3Zm-5 3c0-2.7614 2.2386-5 5-5s5 2.2386 5 5-2.2386 5-5 5-5-2.2386-5-5Z",
|
|
5152
|
+
clipRule: "evenodd"
|
|
5153
|
+
}
|
|
5154
|
+
),
|
|
5155
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5156
|
+
"path",
|
|
5157
|
+
{
|
|
5158
|
+
fill: "currentColor",
|
|
5159
|
+
fillRule: "evenodd",
|
|
5160
|
+
d: "M5 11.5c0-3.3137 2.6863-6 6-6h3v2h-3c-2.2091 0-4 1.7909-4 4v1.5h-2v-1.5ZM21 18h-10v-2h10v2Z",
|
|
5161
|
+
clipRule: "evenodd"
|
|
5162
|
+
}
|
|
5163
|
+
),
|
|
5164
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5165
|
+
"path",
|
|
5166
|
+
{
|
|
5167
|
+
fill: "currentColor",
|
|
5168
|
+
fillRule: "evenodd",
|
|
5169
|
+
d: "M22.3782 16.9999c0 .3073-.1393.5978-.378.7884l-4.3833 3.5-1.2341-1.5769 3.396-2.7115-3.396-2.7116 1.2341-1.5769 4.3833 3.5001c.2387.1906.378.481.378.7884Z",
|
|
5143
5170
|
clipRule: "evenodd"
|
|
5144
5171
|
}
|
|
5145
5172
|
)
|
|
5146
5173
|
);
|
|
5147
5174
|
}
|
|
5148
5175
|
);
|
|
5149
|
-
|
|
5176
|
+
IconDiagrammingFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
5150
5177
|
|
|
5151
5178
|
const IconDistributeHorizontal = react.forwardRef(
|
|
5152
5179
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -5233,7 +5260,7 @@ const IconDistributeVertical = react.forwardRef(
|
|
|
5233
5260
|
);
|
|
5234
5261
|
IconDistributeVertical[designSystemBaseIcon.iconSymbol] = true;
|
|
5235
5262
|
|
|
5236
|
-
const
|
|
5263
|
+
const IconDocFormat = react.forwardRef(
|
|
5237
5264
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5238
5265
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5239
5266
|
return react.createElement(
|
|
@@ -5252,14 +5279,23 @@ const IconDoc = react.forwardRef(
|
|
|
5252
5279
|
{
|
|
5253
5280
|
fill: "currentColor",
|
|
5254
5281
|
fillRule: "evenodd",
|
|
5255
|
-
d: "
|
|
5282
|
+
d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
|
|
5283
|
+
clipRule: "evenodd"
|
|
5284
|
+
}
|
|
5285
|
+
),
|
|
5286
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5287
|
+
"path",
|
|
5288
|
+
{
|
|
5289
|
+
fill: "currentColor",
|
|
5290
|
+
fillRule: "evenodd",
|
|
5291
|
+
d: "M7 12c0-.5523.4477-1 1-1h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1ZM7 8c0-.5523.4477-1 1-1h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1ZM7 16c0-.5523.4477-1 1-1h5c.5523 0 1 .4477 1 1s-.4477 1-1 1h-5c-.5523 0-1-.4477-1-1Z",
|
|
5256
5292
|
clipRule: "evenodd"
|
|
5257
5293
|
}
|
|
5258
5294
|
)
|
|
5259
5295
|
);
|
|
5260
5296
|
}
|
|
5261
5297
|
);
|
|
5262
|
-
|
|
5298
|
+
IconDocFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
5263
5299
|
|
|
5264
5300
|
const IconDollarSignCurrency = react.forwardRef(
|
|
5265
5301
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -5739,7 +5775,7 @@ const IconExport = react.forwardRef(
|
|
|
5739
5775
|
);
|
|
5740
5776
|
IconExport[designSystemBaseIcon.iconSymbol] = true;
|
|
5741
5777
|
|
|
5742
|
-
const
|
|
5778
|
+
const IconExternalFormat = react.forwardRef(
|
|
5743
5779
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5744
5780
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
5745
5781
|
return react.createElement(
|
|
@@ -5758,14 +5794,23 @@ const IconExternal = react.forwardRef(
|
|
|
5758
5794
|
{
|
|
5759
5795
|
fill: "currentColor",
|
|
5760
5796
|
fillRule: "evenodd",
|
|
5761
|
-
d: "
|
|
5797
|
+
d: "M2 6c0-2.2091 1.7909-4 4-4h12c2.2091 0 4 1.7909 4 4v12c0 2.2091-1.7909 4-4 4h-12c-2.2091 0-4-1.7909-4-4v-12Zm4-2c-1.1046 0-2 .8954-2 2v12c0 1.1046.8954 2 2 2h12c1.1046 0 2-.8954 2-2v-12c0-1.1046-.8954-2-2-2h-12Z",
|
|
5798
|
+
clipRule: "evenodd"
|
|
5799
|
+
}
|
|
5800
|
+
),
|
|
5801
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
5802
|
+
"path",
|
|
5803
|
+
{
|
|
5804
|
+
fill: "currentColor",
|
|
5805
|
+
fillRule: "evenodd",
|
|
5806
|
+
d: "M9.0002 8.001c0-.5523.4478-1 1-1h6c.5523 0 1 .4477 1 1v6c0 .5523-.4477 1-1 1-.5522 0-1-.4477-1-1v-3.5858l-6.2928 6.2929c-.3906.3905-1.0237.3905-1.4143 0-.3905-.3905-.3905-1.0237 0-1.4142l6.2929-6.293h-3.5858c-.5522 0-1-.4476-1-1Z",
|
|
5762
5807
|
clipRule: "evenodd"
|
|
5763
5808
|
}
|
|
5764
5809
|
)
|
|
5765
5810
|
);
|
|
5766
5811
|
}
|
|
5767
5812
|
);
|
|
5768
|
-
|
|
5813
|
+
IconExternalFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
5769
5814
|
|
|
5770
5815
|
const IconEyeClosedDotsFourFrameBroken = react.forwardRef(
|
|
5771
5816
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -10739,7 +10784,7 @@ const IconProtoSlider = react.forwardRef(
|
|
|
10739
10784
|
);
|
|
10740
10785
|
IconProtoSlider[designSystemBaseIcon.iconSymbol] = true;
|
|
10741
10786
|
|
|
10742
|
-
const
|
|
10787
|
+
const IconPrototypeFormat = react.forwardRef(
|
|
10743
10788
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10744
10789
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
10745
10790
|
return react.createElement(
|
|
@@ -10758,14 +10803,23 @@ const IconPrototype = react.forwardRef(
|
|
|
10758
10803
|
{
|
|
10759
10804
|
fill: "currentColor",
|
|
10760
10805
|
fillRule: "evenodd",
|
|
10761
|
-
d: "
|
|
10806
|
+
d: "M5 5c0-1.6568 1.3431-3 3-3h8c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-8c-1.6569 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h8c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-8Z",
|
|
10807
|
+
clipRule: "evenodd"
|
|
10808
|
+
}
|
|
10809
|
+
),
|
|
10810
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
10811
|
+
"path",
|
|
10812
|
+
{
|
|
10813
|
+
fill: "currentColor",
|
|
10814
|
+
fillRule: "evenodd",
|
|
10815
|
+
d: "M10 7c0-.5523.4477-1 1-1h2c.5523 0 1 .4477 1 1s-.4477 1-1 1h-2c-.5523 0-1-.4477-1-1Z",
|
|
10762
10816
|
clipRule: "evenodd"
|
|
10763
10817
|
}
|
|
10764
10818
|
)
|
|
10765
10819
|
);
|
|
10766
10820
|
}
|
|
10767
10821
|
);
|
|
10768
|
-
|
|
10822
|
+
IconPrototypeFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
10769
10823
|
|
|
10770
10824
|
const IconPushPinFilled = react.forwardRef(
|
|
10771
10825
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -12348,7 +12402,7 @@ const IconSingleSparksFilled = react.forwardRef(
|
|
|
12348
12402
|
);
|
|
12349
12403
|
IconSingleSparksFilled[designSystemBaseIcon.iconSymbol] = true;
|
|
12350
12404
|
|
|
12351
|
-
const
|
|
12405
|
+
const IconSlideFormat = react.forwardRef(
|
|
12352
12406
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12353
12407
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
12354
12408
|
return react.createElement(
|
|
@@ -12362,19 +12416,26 @@ const IconSlide = react.forwardRef(
|
|
|
12362
12416
|
fill: "none",
|
|
12363
12417
|
ref: forwardRef2
|
|
12364
12418
|
},
|
|
12419
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12420
|
+
"path",
|
|
12421
|
+
{
|
|
12422
|
+
fill: "currentColor",
|
|
12423
|
+
d: "m15.0639 11.376-3.8979-2.5986c-.4984-.3323-1.166.025-1.166.624v5.1972c0 .599.6676.9563 1.166.624l3.8979-2.5986c.4453-.2968.4453-.9512 0-1.248Z"
|
|
12424
|
+
}
|
|
12425
|
+
),
|
|
12365
12426
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
12366
12427
|
"path",
|
|
12367
12428
|
{
|
|
12368
12429
|
fill: "currentColor",
|
|
12369
12430
|
fillRule: "evenodd",
|
|
12370
|
-
d: "
|
|
12431
|
+
d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
|
|
12371
12432
|
clipRule: "evenodd"
|
|
12372
12433
|
}
|
|
12373
12434
|
)
|
|
12374
12435
|
);
|
|
12375
12436
|
}
|
|
12376
12437
|
);
|
|
12377
|
-
|
|
12438
|
+
IconSlideFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
12378
12439
|
|
|
12379
12440
|
const IconSlidersX = react.forwardRef(
|
|
12380
12441
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -14539,7 +14600,7 @@ const IconSwitch = react.forwardRef(
|
|
|
14539
14600
|
);
|
|
14540
14601
|
IconSwitch[designSystemBaseIcon.iconSymbol] = true;
|
|
14541
14602
|
|
|
14542
|
-
const
|
|
14603
|
+
const IconTableFormat = react.forwardRef(
|
|
14543
14604
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
14544
14605
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
14545
14606
|
return react.createElement(
|
|
@@ -14558,14 +14619,23 @@ const IconTable = react.forwardRef(
|
|
|
14558
14619
|
{
|
|
14559
14620
|
fill: "currentColor",
|
|
14560
14621
|
fillRule: "evenodd",
|
|
14561
|
-
d: "
|
|
14622
|
+
d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
|
|
14623
|
+
clipRule: "evenodd"
|
|
14624
|
+
}
|
|
14625
|
+
),
|
|
14626
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
14627
|
+
"path",
|
|
14628
|
+
{
|
|
14629
|
+
fill: "currentColor",
|
|
14630
|
+
fillRule: "evenodd",
|
|
14631
|
+
d: "M12 2c.5523 0 1 .4477 1 1v5h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8v4h8c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8v5c0 .5523-.4477 1-1 1s-1-.4477-1-1v-5h-8c-.5523 0-1-.4477-1-1s.4477-1 1-1h8v-4h-8c-.5523 0-1-.4477-1-1s.4477-1 1-1h8v-5c0-.5523.4477-1 1-1Z",
|
|
14562
14632
|
clipRule: "evenodd"
|
|
14563
14633
|
}
|
|
14564
14634
|
)
|
|
14565
14635
|
);
|
|
14566
14636
|
}
|
|
14567
14637
|
);
|
|
14568
|
-
|
|
14638
|
+
IconTableFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
14569
14639
|
|
|
14570
14640
|
const IconTag = react.forwardRef(
|
|
14571
14641
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -15457,7 +15527,7 @@ const IconTicket = react.forwardRef(
|
|
|
15457
15527
|
);
|
|
15458
15528
|
IconTicket[designSystemBaseIcon.iconSymbol] = true;
|
|
15459
15529
|
|
|
15460
|
-
const
|
|
15530
|
+
const IconTimelineFormat = react.forwardRef(
|
|
15461
15531
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15462
15532
|
const [debug] = designSystemUseLocalStorage.useLocalStorage("DEBUG_ICON", false);
|
|
15463
15533
|
return react.createElement(
|
|
@@ -15476,14 +15546,23 @@ const IconTimeline = react.forwardRef(
|
|
|
15476
15546
|
{
|
|
15477
15547
|
fill: "currentColor",
|
|
15478
15548
|
fillRule: "evenodd",
|
|
15479
|
-
d: "
|
|
15549
|
+
d: "M2 5c0-1.6568 1.3432-3 3-3h14c1.6569 0 3 1.3432 3 3v14c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-14Zm3-1c-.5523 0-1 .4477-1 1v14c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-14c0-.5523-.4477-1-1-1h-14Z",
|
|
15550
|
+
clipRule: "evenodd"
|
|
15551
|
+
}
|
|
15552
|
+
),
|
|
15553
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
15554
|
+
"path",
|
|
15555
|
+
{
|
|
15556
|
+
fill: "currentColor",
|
|
15557
|
+
fillRule: "evenodd",
|
|
15558
|
+
d: "M6 8c0-.5523.4477-1 1-1h7.5c.5523 0 1 .4477 1 1s-.4477 1-1 1h-7.5c-.5523 0-1-.4477-1-1Zm5.25 4c0-.5523.4477-1 1-1h8.25c.5523 0 1 .4477 1 1s-.4477 1-1 1h-8.25c-.5523 0-1-.4477-1-1Zm-3 4c0-.5523.4477-1 1-1h4.125c.5523 0 1 .4477 1 1s-.4477 1-1 1h-4.125c-.5523 0-1-.4477-1-1Z",
|
|
15480
15559
|
clipRule: "evenodd"
|
|
15481
15560
|
}
|
|
15482
15561
|
)
|
|
15483
15562
|
);
|
|
15484
15563
|
}
|
|
15485
15564
|
);
|
|
15486
|
-
|
|
15565
|
+
IconTimelineFormat[designSystemBaseIcon.iconSymbol] = true;
|
|
15487
15566
|
|
|
15488
15567
|
const IconTimer = react.forwardRef(
|
|
15489
15568
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -16748,7 +16827,7 @@ exports.IconCog = IconCog;
|
|
|
16748
16827
|
exports.IconCoins = IconCoins;
|
|
16749
16828
|
exports.IconCoinsChecked = IconCoinsChecked;
|
|
16750
16829
|
exports.IconCoinsSlash = IconCoinsSlash;
|
|
16751
|
-
exports.
|
|
16830
|
+
exports.IconColumnsFormat = IconColumnsFormat;
|
|
16752
16831
|
exports.IconColumnsThree = IconColumnsThree;
|
|
16753
16832
|
exports.IconCommentGroup = IconCommentGroup;
|
|
16754
16833
|
exports.IconConeSerpentine = IconConeSerpentine;
|
|
@@ -16783,10 +16862,10 @@ exports.IconDiagramCardSmall2 = IconDiagramCardSmall2;
|
|
|
16783
16862
|
exports.IconDiagramCardSmall3 = IconDiagramCardSmall3;
|
|
16784
16863
|
exports.IconDiagramCardTeam = IconDiagramCardTeam;
|
|
16785
16864
|
exports.IconDiagramCardUser = IconDiagramCardUser;
|
|
16786
|
-
exports.
|
|
16865
|
+
exports.IconDiagrammingFormat = IconDiagrammingFormat;
|
|
16787
16866
|
exports.IconDistributeHorizontal = IconDistributeHorizontal;
|
|
16788
16867
|
exports.IconDistributeVertical = IconDistributeVertical;
|
|
16789
|
-
exports.
|
|
16868
|
+
exports.IconDocFormat = IconDocFormat;
|
|
16790
16869
|
exports.IconDollarSignCurrency = IconDollarSignCurrency;
|
|
16791
16870
|
exports.IconDotVoting = IconDotVoting;
|
|
16792
16871
|
exports.IconDotsNine = IconDotsNine;
|
|
@@ -16801,7 +16880,7 @@ exports.IconEraser = IconEraser;
|
|
|
16801
16880
|
exports.IconExclamationMarkOctagon = IconExclamationMarkOctagon;
|
|
16802
16881
|
exports.IconExclamationPointCircle = IconExclamationPointCircle;
|
|
16803
16882
|
exports.IconExport = IconExport;
|
|
16804
|
-
exports.
|
|
16883
|
+
exports.IconExternalFormat = IconExternalFormat;
|
|
16805
16884
|
exports.IconEyeClosed = IconEyeClosed;
|
|
16806
16885
|
exports.IconEyeClosedDotsFourFrameBroken = IconEyeClosedDotsFourFrameBroken;
|
|
16807
16886
|
exports.IconEyeOpen = IconEyeOpen;
|
|
@@ -16946,7 +17025,7 @@ exports.IconProtoInput = IconProtoInput;
|
|
|
16946
17025
|
exports.IconProtoNumber = IconProtoNumber;
|
|
16947
17026
|
exports.IconProtoRadio = IconProtoRadio;
|
|
16948
17027
|
exports.IconProtoSlider = IconProtoSlider;
|
|
16949
|
-
exports.
|
|
17028
|
+
exports.IconPrototypeFormat = IconPrototypeFormat;
|
|
16950
17029
|
exports.IconPushPin = IconPushPin;
|
|
16951
17030
|
exports.IconPushPinFilled = IconPushPinFilled;
|
|
16952
17031
|
exports.IconQuestionMark = IconQuestionMark;
|
|
@@ -16994,7 +17073,7 @@ exports.IconSidebarGlobalClosed = IconSidebarGlobalClosed;
|
|
|
16994
17073
|
exports.IconSidebarGlobalOpen = IconSidebarGlobalOpen;
|
|
16995
17074
|
exports.IconSidebarOpen = IconSidebarOpen;
|
|
16996
17075
|
exports.IconSingleSparksFilled = IconSingleSparksFilled;
|
|
16997
|
-
exports.
|
|
17076
|
+
exports.IconSlideFormat = IconSlideFormat;
|
|
16998
17077
|
exports.IconSlidersX = IconSlidersX;
|
|
16999
17078
|
exports.IconSlidersY = IconSlidersY;
|
|
17000
17079
|
exports.IconSmiley = IconSmiley;
|
|
@@ -17057,7 +17136,7 @@ exports.IconStroke4 = IconStroke4;
|
|
|
17057
17136
|
exports.IconStroke5 = IconStroke5;
|
|
17058
17137
|
exports.IconStroke6 = IconStroke6;
|
|
17059
17138
|
exports.IconSwitch = IconSwitch;
|
|
17060
|
-
exports.
|
|
17139
|
+
exports.IconTableFormat = IconTableFormat;
|
|
17061
17140
|
exports.IconTag = IconTag;
|
|
17062
17141
|
exports.IconTasks = IconTasks;
|
|
17063
17142
|
exports.IconTextAUnderline = IconTextAUnderline;
|
|
@@ -17082,7 +17161,7 @@ exports.IconTextUUnderlined = IconTextUUnderlined;
|
|
|
17082
17161
|
exports.IconThumbsUp = IconThumbsUp;
|
|
17083
17162
|
exports.IconTickCircle = IconTickCircle;
|
|
17084
17163
|
exports.IconTicket = IconTicket;
|
|
17085
|
-
exports.
|
|
17164
|
+
exports.IconTimelineFormat = IconTimelineFormat;
|
|
17086
17165
|
exports.IconTimer = IconTimer;
|
|
17087
17166
|
exports.IconToolbar = IconToolbar;
|
|
17088
17167
|
exports.IconTooltip = IconTooltip;
|