@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/module.js
CHANGED
|
@@ -3903,7 +3903,7 @@ const IconCoins = forwardRef(
|
|
|
3903
3903
|
);
|
|
3904
3904
|
IconCoins[iconSymbol] = true;
|
|
3905
3905
|
|
|
3906
|
-
const
|
|
3906
|
+
const IconColumnsFormat = forwardRef(
|
|
3907
3907
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3908
3908
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
3909
3909
|
return createElement(
|
|
@@ -3920,19 +3920,27 @@ const IconColumnsThree = forwardRef(
|
|
|
3920
3920
|
/* @__PURE__ */ jsx(
|
|
3921
3921
|
"path",
|
|
3922
3922
|
{
|
|
3923
|
-
|
|
3924
|
-
|
|
3925
|
-
|
|
3926
|
-
|
|
3927
|
-
|
|
3923
|
+
fill: "currentColor",
|
|
3924
|
+
fillRule: "evenodd",
|
|
3925
|
+
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",
|
|
3926
|
+
clipRule: "evenodd"
|
|
3927
|
+
}
|
|
3928
|
+
),
|
|
3929
|
+
/* @__PURE__ */ jsx(
|
|
3930
|
+
"path",
|
|
3931
|
+
{
|
|
3932
|
+
fill: "currentColor",
|
|
3933
|
+
fillRule: "evenodd",
|
|
3934
|
+
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",
|
|
3935
|
+
clipRule: "evenodd"
|
|
3928
3936
|
}
|
|
3929
3937
|
)
|
|
3930
3938
|
);
|
|
3931
3939
|
}
|
|
3932
3940
|
);
|
|
3933
|
-
|
|
3941
|
+
IconColumnsFormat[iconSymbol] = true;
|
|
3934
3942
|
|
|
3935
|
-
const
|
|
3943
|
+
const IconColumnsThree = forwardRef(
|
|
3936
3944
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
3937
3945
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
3938
3946
|
return createElement(
|
|
@@ -3949,16 +3957,17 @@ const IconColumns = forwardRef(
|
|
|
3949
3957
|
/* @__PURE__ */ jsx(
|
|
3950
3958
|
"path",
|
|
3951
3959
|
{
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
|
|
3955
|
-
|
|
3960
|
+
stroke: "currentColor",
|
|
3961
|
+
strokeLinecap: "round",
|
|
3962
|
+
strokeLinejoin: "round",
|
|
3963
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
3964
|
+
d: "M7 20h-4v-16h4m0 16v-16m0 16h10m-10-16h10m0 0h4v16h-4m0-16v16"
|
|
3956
3965
|
}
|
|
3957
3966
|
)
|
|
3958
3967
|
);
|
|
3959
3968
|
}
|
|
3960
3969
|
);
|
|
3961
|
-
|
|
3970
|
+
IconColumnsThree[iconSymbol] = true;
|
|
3962
3971
|
|
|
3963
3972
|
const IconCommentGroup = forwardRef(
|
|
3964
3973
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -5116,7 +5125,7 @@ const IconDiagramCardUser = forwardRef(
|
|
|
5116
5125
|
);
|
|
5117
5126
|
IconDiagramCardUser[iconSymbol] = true;
|
|
5118
5127
|
|
|
5119
|
-
const
|
|
5128
|
+
const IconDiagrammingFormat = forwardRef(
|
|
5120
5129
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5121
5130
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5122
5131
|
return createElement(
|
|
@@ -5135,14 +5144,32 @@ const IconDiagramming = forwardRef(
|
|
|
5135
5144
|
{
|
|
5136
5145
|
fill: "currentColor",
|
|
5137
5146
|
fillRule: "evenodd",
|
|
5138
|
-
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-
|
|
5147
|
+
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",
|
|
5148
|
+
clipRule: "evenodd"
|
|
5149
|
+
}
|
|
5150
|
+
),
|
|
5151
|
+
/* @__PURE__ */ jsx(
|
|
5152
|
+
"path",
|
|
5153
|
+
{
|
|
5154
|
+
fill: "currentColor",
|
|
5155
|
+
fillRule: "evenodd",
|
|
5156
|
+
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",
|
|
5157
|
+
clipRule: "evenodd"
|
|
5158
|
+
}
|
|
5159
|
+
),
|
|
5160
|
+
/* @__PURE__ */ jsx(
|
|
5161
|
+
"path",
|
|
5162
|
+
{
|
|
5163
|
+
fill: "currentColor",
|
|
5164
|
+
fillRule: "evenodd",
|
|
5165
|
+
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",
|
|
5139
5166
|
clipRule: "evenodd"
|
|
5140
5167
|
}
|
|
5141
5168
|
)
|
|
5142
5169
|
);
|
|
5143
5170
|
}
|
|
5144
5171
|
);
|
|
5145
|
-
|
|
5172
|
+
IconDiagrammingFormat[iconSymbol] = true;
|
|
5146
5173
|
|
|
5147
5174
|
const IconDistributeHorizontal = forwardRef(
|
|
5148
5175
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -5229,7 +5256,7 @@ const IconDistributeVertical = forwardRef(
|
|
|
5229
5256
|
);
|
|
5230
5257
|
IconDistributeVertical[iconSymbol] = true;
|
|
5231
5258
|
|
|
5232
|
-
const
|
|
5259
|
+
const IconDocFormat = forwardRef(
|
|
5233
5260
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5234
5261
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5235
5262
|
return createElement(
|
|
@@ -5248,14 +5275,23 @@ const IconDoc = forwardRef(
|
|
|
5248
5275
|
{
|
|
5249
5276
|
fill: "currentColor",
|
|
5250
5277
|
fillRule: "evenodd",
|
|
5251
|
-
d: "
|
|
5278
|
+
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",
|
|
5279
|
+
clipRule: "evenodd"
|
|
5280
|
+
}
|
|
5281
|
+
),
|
|
5282
|
+
/* @__PURE__ */ jsx(
|
|
5283
|
+
"path",
|
|
5284
|
+
{
|
|
5285
|
+
fill: "currentColor",
|
|
5286
|
+
fillRule: "evenodd",
|
|
5287
|
+
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",
|
|
5252
5288
|
clipRule: "evenodd"
|
|
5253
5289
|
}
|
|
5254
5290
|
)
|
|
5255
5291
|
);
|
|
5256
5292
|
}
|
|
5257
5293
|
);
|
|
5258
|
-
|
|
5294
|
+
IconDocFormat[iconSymbol] = true;
|
|
5259
5295
|
|
|
5260
5296
|
const IconDollarSignCurrency = forwardRef(
|
|
5261
5297
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -5735,7 +5771,7 @@ const IconExport = forwardRef(
|
|
|
5735
5771
|
);
|
|
5736
5772
|
IconExport[iconSymbol] = true;
|
|
5737
5773
|
|
|
5738
|
-
const
|
|
5774
|
+
const IconExternalFormat = forwardRef(
|
|
5739
5775
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5740
5776
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5741
5777
|
return createElement(
|
|
@@ -5754,14 +5790,23 @@ const IconExternal = forwardRef(
|
|
|
5754
5790
|
{
|
|
5755
5791
|
fill: "currentColor",
|
|
5756
5792
|
fillRule: "evenodd",
|
|
5757
|
-
d: "
|
|
5793
|
+
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",
|
|
5794
|
+
clipRule: "evenodd"
|
|
5795
|
+
}
|
|
5796
|
+
),
|
|
5797
|
+
/* @__PURE__ */ jsx(
|
|
5798
|
+
"path",
|
|
5799
|
+
{
|
|
5800
|
+
fill: "currentColor",
|
|
5801
|
+
fillRule: "evenodd",
|
|
5802
|
+
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",
|
|
5758
5803
|
clipRule: "evenodd"
|
|
5759
5804
|
}
|
|
5760
5805
|
)
|
|
5761
5806
|
);
|
|
5762
5807
|
}
|
|
5763
5808
|
);
|
|
5764
|
-
|
|
5809
|
+
IconExternalFormat[iconSymbol] = true;
|
|
5765
5810
|
|
|
5766
5811
|
const IconEyeClosedDotsFourFrameBroken = forwardRef(
|
|
5767
5812
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -10735,7 +10780,7 @@ const IconProtoSlider = forwardRef(
|
|
|
10735
10780
|
);
|
|
10736
10781
|
IconProtoSlider[iconSymbol] = true;
|
|
10737
10782
|
|
|
10738
|
-
const
|
|
10783
|
+
const IconPrototypeFormat = forwardRef(
|
|
10739
10784
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
10740
10785
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10741
10786
|
return createElement(
|
|
@@ -10754,14 +10799,23 @@ const IconPrototype = forwardRef(
|
|
|
10754
10799
|
{
|
|
10755
10800
|
fill: "currentColor",
|
|
10756
10801
|
fillRule: "evenodd",
|
|
10757
|
-
d: "
|
|
10802
|
+
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",
|
|
10803
|
+
clipRule: "evenodd"
|
|
10804
|
+
}
|
|
10805
|
+
),
|
|
10806
|
+
/* @__PURE__ */ jsx(
|
|
10807
|
+
"path",
|
|
10808
|
+
{
|
|
10809
|
+
fill: "currentColor",
|
|
10810
|
+
fillRule: "evenodd",
|
|
10811
|
+
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",
|
|
10758
10812
|
clipRule: "evenodd"
|
|
10759
10813
|
}
|
|
10760
10814
|
)
|
|
10761
10815
|
);
|
|
10762
10816
|
}
|
|
10763
10817
|
);
|
|
10764
|
-
|
|
10818
|
+
IconPrototypeFormat[iconSymbol] = true;
|
|
10765
10819
|
|
|
10766
10820
|
const IconPushPinFilled = forwardRef(
|
|
10767
10821
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -12344,7 +12398,7 @@ const IconSingleSparksFilled = forwardRef(
|
|
|
12344
12398
|
);
|
|
12345
12399
|
IconSingleSparksFilled[iconSymbol] = true;
|
|
12346
12400
|
|
|
12347
|
-
const
|
|
12401
|
+
const IconSlideFormat = forwardRef(
|
|
12348
12402
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
12349
12403
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
12350
12404
|
return createElement(
|
|
@@ -12358,19 +12412,26 @@ const IconSlide = forwardRef(
|
|
|
12358
12412
|
fill: "none",
|
|
12359
12413
|
ref: forwardRef2
|
|
12360
12414
|
},
|
|
12415
|
+
/* @__PURE__ */ jsx(
|
|
12416
|
+
"path",
|
|
12417
|
+
{
|
|
12418
|
+
fill: "currentColor",
|
|
12419
|
+
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"
|
|
12420
|
+
}
|
|
12421
|
+
),
|
|
12361
12422
|
/* @__PURE__ */ jsx(
|
|
12362
12423
|
"path",
|
|
12363
12424
|
{
|
|
12364
12425
|
fill: "currentColor",
|
|
12365
12426
|
fillRule: "evenodd",
|
|
12366
|
-
d: "
|
|
12427
|
+
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",
|
|
12367
12428
|
clipRule: "evenodd"
|
|
12368
12429
|
}
|
|
12369
12430
|
)
|
|
12370
12431
|
);
|
|
12371
12432
|
}
|
|
12372
12433
|
);
|
|
12373
|
-
|
|
12434
|
+
IconSlideFormat[iconSymbol] = true;
|
|
12374
12435
|
|
|
12375
12436
|
const IconSlidersX = forwardRef(
|
|
12376
12437
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -14535,7 +14596,7 @@ const IconSwitch = forwardRef(
|
|
|
14535
14596
|
);
|
|
14536
14597
|
IconSwitch[iconSymbol] = true;
|
|
14537
14598
|
|
|
14538
|
-
const
|
|
14599
|
+
const IconTableFormat = forwardRef(
|
|
14539
14600
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
14540
14601
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
14541
14602
|
return createElement(
|
|
@@ -14554,14 +14615,23 @@ const IconTable = forwardRef(
|
|
|
14554
14615
|
{
|
|
14555
14616
|
fill: "currentColor",
|
|
14556
14617
|
fillRule: "evenodd",
|
|
14557
|
-
d: "
|
|
14618
|
+
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",
|
|
14619
|
+
clipRule: "evenodd"
|
|
14620
|
+
}
|
|
14621
|
+
),
|
|
14622
|
+
/* @__PURE__ */ jsx(
|
|
14623
|
+
"path",
|
|
14624
|
+
{
|
|
14625
|
+
fill: "currentColor",
|
|
14626
|
+
fillRule: "evenodd",
|
|
14627
|
+
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",
|
|
14558
14628
|
clipRule: "evenodd"
|
|
14559
14629
|
}
|
|
14560
14630
|
)
|
|
14561
14631
|
);
|
|
14562
14632
|
}
|
|
14563
14633
|
);
|
|
14564
|
-
|
|
14634
|
+
IconTableFormat[iconSymbol] = true;
|
|
14565
14635
|
|
|
14566
14636
|
const IconTag = forwardRef(
|
|
14567
14637
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -15453,7 +15523,7 @@ const IconTicket = forwardRef(
|
|
|
15453
15523
|
);
|
|
15454
15524
|
IconTicket[iconSymbol] = true;
|
|
15455
15525
|
|
|
15456
|
-
const
|
|
15526
|
+
const IconTimelineFormat = forwardRef(
|
|
15457
15527
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15458
15528
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
15459
15529
|
return createElement(
|
|
@@ -15472,14 +15542,23 @@ const IconTimeline = forwardRef(
|
|
|
15472
15542
|
{
|
|
15473
15543
|
fill: "currentColor",
|
|
15474
15544
|
fillRule: "evenodd",
|
|
15475
|
-
d: "
|
|
15545
|
+
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",
|
|
15546
|
+
clipRule: "evenodd"
|
|
15547
|
+
}
|
|
15548
|
+
),
|
|
15549
|
+
/* @__PURE__ */ jsx(
|
|
15550
|
+
"path",
|
|
15551
|
+
{
|
|
15552
|
+
fill: "currentColor",
|
|
15553
|
+
fillRule: "evenodd",
|
|
15554
|
+
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",
|
|
15476
15555
|
clipRule: "evenodd"
|
|
15477
15556
|
}
|
|
15478
15557
|
)
|
|
15479
15558
|
);
|
|
15480
15559
|
}
|
|
15481
15560
|
);
|
|
15482
|
-
|
|
15561
|
+
IconTimelineFormat[iconSymbol] = true;
|
|
15483
15562
|
|
|
15484
15563
|
const IconTimer = forwardRef(
|
|
15485
15564
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
@@ -16633,5 +16712,5 @@ const IconWallet = forwardRef(
|
|
|
16633
16712
|
);
|
|
16634
16713
|
IconWallet[iconSymbol] = true;
|
|
16635
16714
|
|
|
16636
|
-
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconAlignmentScale, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash,
|
|
16715
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconAlignmentScale, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShadow, IconShapes, IconShapesLines, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTableFormat, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
16637
16716
|
//# sourceMappingURL=module.js.map
|