@mirohq/design-system-icons 1.11.0 → 1.12.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 +241 -4
- package/dist/main.js.map +1 -1
- package/dist/module.js +233 -5
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +19 -1
- package/package.json +4 -4
- package/react/box-captions-filled.tsx +36 -0
- package/react/chat-cross.tsx +34 -0
- package/react/horizontal-blocks.tsx +34 -0
- package/react/index.ts +9 -0
- package/react/line-vertical.tsx +31 -0
- package/react/magnifying-glass-minus.tsx +36 -0
- package/react/proto-checkbox.tsx +1 -1
- package/react/proto-radio.tsx +1 -3
- package/react/rectangle-portrait-square-bottom-right.tsx +33 -0
- package/react/rectangles-layout.tsx +34 -0
- package/react/split-horizontal.tsx +34 -0
- package/react/vertical-blocks.tsx +34 -0
- package/svg/24/box-captions-filled.svg +2 -0
- package/svg/24/chat-cross.svg +2 -0
- package/svg/24/horizontal-blocks.svg +2 -0
- package/svg/24/line-vertical.svg +2 -0
- package/svg/24/magnifying-glass-minus.svg +2 -0
- package/svg/24/proto-checkbox.svg +1 -1
- package/svg/24/proto-radio.svg +1 -1
- package/svg/24/rectangle-portrait-square-bottom-right.svg +2 -0
- package/svg/24/rectangles-layout.svg +2 -0
- package/svg/24/split-horizontal.svg +2 -0
- package/svg/24/vertical-blocks.svg +2 -0
- package/svg/meta.json +104 -17
package/dist/module.js
CHANGED
|
@@ -1944,6 +1944,34 @@ const IconBookmark = forwardRef(
|
|
|
1944
1944
|
);
|
|
1945
1945
|
IconBookmark[iconSymbol] = true;
|
|
1946
1946
|
|
|
1947
|
+
const IconBoxCaptionsFilled = forwardRef(
|
|
1948
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
1949
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1950
|
+
return createElement(
|
|
1951
|
+
StyledIcon,
|
|
1952
|
+
{
|
|
1953
|
+
...props,
|
|
1954
|
+
debug,
|
|
1955
|
+
"aria-hidden": true,
|
|
1956
|
+
size,
|
|
1957
|
+
viewBox: "0 0 24 24",
|
|
1958
|
+
fill: "none",
|
|
1959
|
+
ref: forwardRef2
|
|
1960
|
+
},
|
|
1961
|
+
/* @__PURE__ */ jsx(
|
|
1962
|
+
"path",
|
|
1963
|
+
{
|
|
1964
|
+
fill: "currentColor",
|
|
1965
|
+
fillRule: "evenodd",
|
|
1966
|
+
d: "M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM9.112 9.336c-.482 0-.943.097-1.348.287a2.662 2.662 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.883 3.883 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.656-2.097h-1.416a1.016 1.016 0 0 1-.501.695 1.263 1.263 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104.133-.039.276-.06.422-.06a1.469 1.469 0 0 1 .45.063c.412.122.696.416.75.818H11.8c-.152-1.272-1.208-2.096-2.688-2.096Zm5.961 0c-.482 0-.943.097-1.348.287a2.66 2.66 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.929 3.929 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.655-2.097h-1.416a1.016 1.016 0 0 1-.5.695 1.258 1.258 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104a1.5 1.5 0 0 1 .422-.06 1.467 1.467 0 0 1 .45.063c.412.122.695.416.75.818h1.496c-.152-1.272-1.208-2.096-2.688-2.096Z",
|
|
1967
|
+
clipRule: "evenodd"
|
|
1968
|
+
}
|
|
1969
|
+
)
|
|
1970
|
+
);
|
|
1971
|
+
}
|
|
1972
|
+
);
|
|
1973
|
+
IconBoxCaptionsFilled[iconSymbol] = true;
|
|
1974
|
+
|
|
1947
1975
|
const IconBoxCaptions = forwardRef(
|
|
1948
1976
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
1949
1977
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -2528,6 +2556,32 @@ const IconChatCheck = forwardRef(
|
|
|
2528
2556
|
);
|
|
2529
2557
|
IconChatCheck[iconSymbol] = true;
|
|
2530
2558
|
|
|
2559
|
+
const IconChatCross = forwardRef(
|
|
2560
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
2561
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
2562
|
+
return createElement(
|
|
2563
|
+
StyledIcon,
|
|
2564
|
+
{
|
|
2565
|
+
...props,
|
|
2566
|
+
debug,
|
|
2567
|
+
"aria-hidden": true,
|
|
2568
|
+
size,
|
|
2569
|
+
viewBox: "0 0 24 24",
|
|
2570
|
+
fill: "none",
|
|
2571
|
+
ref: forwardRef2
|
|
2572
|
+
},
|
|
2573
|
+
/* @__PURE__ */ jsx(
|
|
2574
|
+
"path",
|
|
2575
|
+
{
|
|
2576
|
+
fill: "currentColor",
|
|
2577
|
+
d: "M21.707 2.707 19.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.414ZM2 12c0-5.147 3.889-9.386 8.89-9.94l.22 1.99a8.002 8.002 0 0 0-5.926 12.14l.103.821-.764 2.456 2.431-.77.83.104a7.966 7.966 0 0 0 4.216 1.2 8.002 8.002 0 0 0 7.951-7.111l1.988.22C21.387 18.11 17.148 22 12 22a9.973 9.973 0 0 1-4.865-1.263l-3.832 1.216-1.258-1.25 1.201-3.868A9.958 9.958 0 0 1 2 12Z"
|
|
2578
|
+
}
|
|
2579
|
+
)
|
|
2580
|
+
);
|
|
2581
|
+
}
|
|
2582
|
+
);
|
|
2583
|
+
IconChatCross[iconSymbol] = true;
|
|
2584
|
+
|
|
2531
2585
|
const IconChatDashesLinesTwo = forwardRef(
|
|
2532
2586
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
2533
2587
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -6462,6 +6516,32 @@ const IconHighlighter = forwardRef(
|
|
|
6462
6516
|
);
|
|
6463
6517
|
IconHighlighter[iconSymbol] = true;
|
|
6464
6518
|
|
|
6519
|
+
const IconHorizontalBlocks = forwardRef(
|
|
6520
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
6521
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
6522
|
+
return createElement(
|
|
6523
|
+
StyledIcon,
|
|
6524
|
+
{
|
|
6525
|
+
...props,
|
|
6526
|
+
debug,
|
|
6527
|
+
"aria-hidden": true,
|
|
6528
|
+
size,
|
|
6529
|
+
viewBox: "0 0 24 24",
|
|
6530
|
+
fill: "none",
|
|
6531
|
+
ref: forwardRef2
|
|
6532
|
+
},
|
|
6533
|
+
/* @__PURE__ */ jsx(
|
|
6534
|
+
"path",
|
|
6535
|
+
{
|
|
6536
|
+
fill: "currentColor",
|
|
6537
|
+
d: "M5 15v4h10v-4H5Zm12 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 19v-4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4ZM5 5v4h14V5H5Zm16 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 9V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4Z"
|
|
6538
|
+
}
|
|
6539
|
+
)
|
|
6540
|
+
);
|
|
6541
|
+
}
|
|
6542
|
+
);
|
|
6543
|
+
IconHorizontalBlocks[iconSymbol] = true;
|
|
6544
|
+
|
|
6465
6545
|
const IconHouse = forwardRef(
|
|
6466
6546
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
6467
6547
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -7096,6 +7176,26 @@ const IconLineTwoDiagonalTopRightDouble = forwardRef(
|
|
|
7096
7176
|
);
|
|
7097
7177
|
IconLineTwoDiagonalTopRightDouble[iconSymbol] = true;
|
|
7098
7178
|
|
|
7179
|
+
const IconLineVertical = forwardRef(
|
|
7180
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7181
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
7182
|
+
return createElement(
|
|
7183
|
+
StyledIcon,
|
|
7184
|
+
{
|
|
7185
|
+
...props,
|
|
7186
|
+
debug,
|
|
7187
|
+
"aria-hidden": true,
|
|
7188
|
+
size,
|
|
7189
|
+
viewBox: "0 0 24 24",
|
|
7190
|
+
fill: "none",
|
|
7191
|
+
ref: forwardRef2
|
|
7192
|
+
},
|
|
7193
|
+
/* @__PURE__ */ jsx("path", { fill: "currentColor", d: "M14 20h-2V4h2v16Z" })
|
|
7194
|
+
);
|
|
7195
|
+
}
|
|
7196
|
+
);
|
|
7197
|
+
IconLineVertical[iconSymbol] = true;
|
|
7198
|
+
|
|
7099
7199
|
const IconLinesThreeHorizontalLineVerticalCenter = forwardRef(({ size = "medium", ...props }, forwardRef2) => {
|
|
7100
7200
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
7101
7201
|
return createElement(
|
|
@@ -7466,6 +7566,34 @@ const IconMagnifyingGlassLightning = forwardRef(
|
|
|
7466
7566
|
);
|
|
7467
7567
|
IconMagnifyingGlassLightning[iconSymbol] = true;
|
|
7468
7568
|
|
|
7569
|
+
const IconMagnifyingGlassMinus = forwardRef(
|
|
7570
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
7571
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
7572
|
+
return createElement(
|
|
7573
|
+
StyledIcon,
|
|
7574
|
+
{
|
|
7575
|
+
...props,
|
|
7576
|
+
debug,
|
|
7577
|
+
"aria-hidden": true,
|
|
7578
|
+
size,
|
|
7579
|
+
viewBox: "0 0 24 24",
|
|
7580
|
+
fill: "none",
|
|
7581
|
+
ref: forwardRef2
|
|
7582
|
+
},
|
|
7583
|
+
/* @__PURE__ */ jsx(
|
|
7584
|
+
"path",
|
|
7585
|
+
{
|
|
7586
|
+
fill: "currentColor",
|
|
7587
|
+
fillRule: "evenodd",
|
|
7588
|
+
d: "M8.835 3.097c.054-.01.11-.018.165-.026V5.1a5 5 0 1 0 6 4.9h2a6.97 6.97 0 0 1-1.394 4.192l5.101 5.1-1.414 1.415-5.1-5.1a7 7 0 1 1-5.358-12.51ZM19 5v2h-7V5h7Z",
|
|
7589
|
+
clipRule: "evenodd"
|
|
7590
|
+
}
|
|
7591
|
+
)
|
|
7592
|
+
);
|
|
7593
|
+
}
|
|
7594
|
+
);
|
|
7595
|
+
IconMagnifyingGlassMinus[iconSymbol] = true;
|
|
7596
|
+
|
|
7469
7597
|
const IconMagnifyingGlassPlus = forwardRef(
|
|
7470
7598
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
7471
7599
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -9668,7 +9796,7 @@ const IconProtoCheckbox = forwardRef(
|
|
|
9668
9796
|
"path",
|
|
9669
9797
|
{
|
|
9670
9798
|
fill: "currentColor",
|
|
9671
|
-
d: "
|
|
9799
|
+
d: "M19 6a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6Zm2 12a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v12Zm-4.21-9.387-5.429 7-1.583-.004-2.571-3.347 1.586-1.219 1.781 2.32 4.636-5.976 1.58 1.226Z"
|
|
9672
9800
|
}
|
|
9673
9801
|
)
|
|
9674
9802
|
);
|
|
@@ -9772,9 +9900,7 @@ const IconProtoRadio = forwardRef(
|
|
|
9772
9900
|
"path",
|
|
9773
9901
|
{
|
|
9774
9902
|
fill: "currentColor",
|
|
9775
|
-
|
|
9776
|
-
d: "M12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10Zm0 2a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm3-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z",
|
|
9777
|
-
clipRule: "evenodd"
|
|
9903
|
+
d: "M19 12a7 7 0 1 0-7 7v2a9 9 0 1 1 0-18 9 9 0 0 1 0 18v-2a7 7 0 0 0 7-7Zm-3 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z"
|
|
9778
9904
|
}
|
|
9779
9905
|
)
|
|
9780
9906
|
);
|
|
@@ -10332,6 +10458,30 @@ const IconRectanglePortraitFilled = forwardRef(
|
|
|
10332
10458
|
);
|
|
10333
10459
|
IconRectanglePortraitFilled[iconSymbol] = true;
|
|
10334
10460
|
|
|
10461
|
+
const IconRectanglePortraitSquareBottomRight = forwardRef(({ size = "medium", ...props }, forwardRef2) => {
|
|
10462
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10463
|
+
return createElement(
|
|
10464
|
+
StyledIcon,
|
|
10465
|
+
{
|
|
10466
|
+
...props,
|
|
10467
|
+
debug,
|
|
10468
|
+
"aria-hidden": true,
|
|
10469
|
+
size,
|
|
10470
|
+
viewBox: "0 0 24 24",
|
|
10471
|
+
fill: "none",
|
|
10472
|
+
ref: forwardRef2
|
|
10473
|
+
},
|
|
10474
|
+
/* @__PURE__ */ jsx(
|
|
10475
|
+
"path",
|
|
10476
|
+
{
|
|
10477
|
+
fill: "currentColor",
|
|
10478
|
+
d: "M11.5 10.5h7v6h-7v-6ZM20 7a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v10l.005.102A1 1 0 0 0 5 18h14a1 1 0 0 0 1-1V7Zm2 10a3 3 0 0 1-3 3H5a3 3 0 0 1-2.996-2.846L2 17V7a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v10Z"
|
|
10479
|
+
}
|
|
10480
|
+
)
|
|
10481
|
+
);
|
|
10482
|
+
});
|
|
10483
|
+
IconRectanglePortraitSquareBottomRight[iconSymbol] = true;
|
|
10484
|
+
|
|
10335
10485
|
const IconRectanglePortraitSquareTopLeft = forwardRef(
|
|
10336
10486
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10337
10487
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -10438,6 +10588,32 @@ const IconRectangleTriangleBottomCenter = forwardRef(
|
|
|
10438
10588
|
);
|
|
10439
10589
|
IconRectangleTriangleBottomCenter[iconSymbol] = true;
|
|
10440
10590
|
|
|
10591
|
+
const IconRectanglesLayout = forwardRef(
|
|
10592
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
10593
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
10594
|
+
return createElement(
|
|
10595
|
+
StyledIcon,
|
|
10596
|
+
{
|
|
10597
|
+
...props,
|
|
10598
|
+
debug,
|
|
10599
|
+
"aria-hidden": true,
|
|
10600
|
+
size,
|
|
10601
|
+
viewBox: "0 0 24 24",
|
|
10602
|
+
fill: "none",
|
|
10603
|
+
ref: forwardRef2
|
|
10604
|
+
},
|
|
10605
|
+
/* @__PURE__ */ jsx(
|
|
10606
|
+
"path",
|
|
10607
|
+
{
|
|
10608
|
+
fill: "currentColor",
|
|
10609
|
+
d: "m13 4-1 1v6l1 1h8l1-1V5l-1-1h-8Zm7 6h-6V6h6v4ZM3 3 2 4v15l1 1h6l1-1V4L9 3H3Zm5 15H4V5h4v13Zm5-4-1 1v5l1 1h6l1-1v-5l-1-1h-6Zm5 5h-4v-3h4v3Z"
|
|
10610
|
+
}
|
|
10611
|
+
)
|
|
10612
|
+
);
|
|
10613
|
+
}
|
|
10614
|
+
);
|
|
10615
|
+
IconRectanglesLayout[iconSymbol] = true;
|
|
10616
|
+
|
|
10441
10617
|
const IconRectanglesSquares = forwardRef(
|
|
10442
10618
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
10443
10619
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -11984,6 +12160,32 @@ const IconSpinner = forwardRef(
|
|
|
11984
12160
|
);
|
|
11985
12161
|
IconSpinner[iconSymbol] = true;
|
|
11986
12162
|
|
|
12163
|
+
const IconSplitHorizontal = forwardRef(
|
|
12164
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
12165
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
12166
|
+
return createElement(
|
|
12167
|
+
StyledIcon,
|
|
12168
|
+
{
|
|
12169
|
+
...props,
|
|
12170
|
+
debug,
|
|
12171
|
+
"aria-hidden": true,
|
|
12172
|
+
size,
|
|
12173
|
+
viewBox: "0 0 24 24",
|
|
12174
|
+
fill: "none",
|
|
12175
|
+
ref: forwardRef2
|
|
12176
|
+
},
|
|
12177
|
+
/* @__PURE__ */ jsx(
|
|
12178
|
+
"path",
|
|
12179
|
+
{
|
|
12180
|
+
fill: "currentColor",
|
|
12181
|
+
d: "M3 18V6a3 3 0 0 1 3-3h2v2H6a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2v2H6a3 3 0 0 1-3-3Zm16 0V6a1 1 0 0 0-1-1h-2V3h2a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3h-2v-2h2a1 1 0 0 0 1-1Zm-6 5h-2V1h2v22Z"
|
|
12182
|
+
}
|
|
12183
|
+
)
|
|
12184
|
+
);
|
|
12185
|
+
}
|
|
12186
|
+
);
|
|
12187
|
+
IconSplitHorizontal[iconSymbol] = true;
|
|
12188
|
+
|
|
11987
12189
|
const IconSplitVertical = forwardRef(
|
|
11988
12190
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
11989
12191
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -14742,6 +14944,32 @@ const IconUsers = forwardRef(
|
|
|
14742
14944
|
);
|
|
14743
14945
|
IconUsers[iconSymbol] = true;
|
|
14744
14946
|
|
|
14947
|
+
const IconVerticalBlocks = forwardRef(
|
|
14948
|
+
({ size = "medium", ...props }, forwardRef2) => {
|
|
14949
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
14950
|
+
return createElement(
|
|
14951
|
+
StyledIcon,
|
|
14952
|
+
{
|
|
14953
|
+
...props,
|
|
14954
|
+
debug,
|
|
14955
|
+
"aria-hidden": true,
|
|
14956
|
+
size,
|
|
14957
|
+
viewBox: "0 0 24 24",
|
|
14958
|
+
fill: "none",
|
|
14959
|
+
ref: forwardRef2
|
|
14960
|
+
},
|
|
14961
|
+
/* @__PURE__ */ jsx(
|
|
14962
|
+
"path",
|
|
14963
|
+
{
|
|
14964
|
+
fill: "currentColor",
|
|
14965
|
+
d: "M15 5h4v12h-4V5Zm4 14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h4ZM5 5h4v14H5V5Zm4 16a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4Z"
|
|
14966
|
+
}
|
|
14967
|
+
)
|
|
14968
|
+
);
|
|
14969
|
+
}
|
|
14970
|
+
);
|
|
14971
|
+
IconVerticalBlocks[iconSymbol] = true;
|
|
14972
|
+
|
|
14745
14973
|
const IconVideoCameraDot = forwardRef(
|
|
14746
14974
|
({ size = "medium", ...props }, forwardRef2) => {
|
|
14747
14975
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15178,5 +15406,5 @@ const IconWifi = forwardRef(
|
|
|
15178
15406
|
);
|
|
15179
15407
|
IconWifi[iconSymbol] = true;
|
|
15180
15408
|
|
|
15181
|
-
export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, 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, IconDiagramming, IconDiagrammingShapes, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlip, IconFlipCard, IconFolder, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, 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, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, 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, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, 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, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
15409
|
+
export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBoxCaptionsFilled, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatCross, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, 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, IconDiagramming, IconDiagrammingShapes, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotLineDot, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFilledBottomBox, IconFilledTopBox, IconFlag, IconFlip, IconFlipCard, IconFolder, IconFormula, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGithub, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, IconHighlighterUnderline, IconHorizontalBlocks, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLineVertical, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassMinus, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, 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, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareBottomRight, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesLayout, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitHorizontal, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVerticalBlocks, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
15182
15410
|
//# sourceMappingURL=module.js.map
|