@mirohq/design-system-icons 0.71.0 → 0.72.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 +209 -4
- package/dist/main.js.map +1 -1
- package/dist/module.js +206 -5
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -1
- package/package.json +3 -3
- package/react/alt-text-underline.tsx +47 -0
- package/react/hand-raised-filled.tsx +58 -4
- package/react/index.ts +4 -0
- package/react/insights.tsx +41 -0
- package/react/raised-hand.tsx +37 -0
- package/react/social-asana.tsx +37 -0
- package/svg/24/alt-text-underline.svg +2 -0
- package/svg/24/hand-raised-filled-new.svg +2 -0
- package/svg/24/hand-raised-filled.svg +1 -1
- package/svg/24/insights.svg +2 -0
- package/svg/24/raised-hand.svg +2 -0
- package/svg/24/social-asana.svg +2 -0
- package/svg/meta.json +16 -0
package/dist/module.js
CHANGED
|
@@ -1136,6 +1136,51 @@ const IconAlignmentScale = forwardRef(
|
|
|
1136
1136
|
);
|
|
1137
1137
|
IconAlignmentScale[iconSymbol] = true;
|
|
1138
1138
|
|
|
1139
|
+
const IconAltTextUnderline = forwardRef(
|
|
1140
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1141
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1142
|
+
return createElement(
|
|
1143
|
+
StyledIcon,
|
|
1144
|
+
{
|
|
1145
|
+
...props,
|
|
1146
|
+
weight,
|
|
1147
|
+
debug,
|
|
1148
|
+
"aria-hidden": true,
|
|
1149
|
+
size,
|
|
1150
|
+
viewBox: "0 0 24 24",
|
|
1151
|
+
fill: "none",
|
|
1152
|
+
ref: forwardRef2
|
|
1153
|
+
},
|
|
1154
|
+
/* @__PURE__ */ jsx(
|
|
1155
|
+
"path",
|
|
1156
|
+
{
|
|
1157
|
+
stroke: "currentColor",
|
|
1158
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1159
|
+
d: "M12 8v7h4M16 9h6M19 9v7"
|
|
1160
|
+
}
|
|
1161
|
+
),
|
|
1162
|
+
/* @__PURE__ */ jsx(
|
|
1163
|
+
"path",
|
|
1164
|
+
{
|
|
1165
|
+
fill: "currentColor",
|
|
1166
|
+
fillRule: "evenodd",
|
|
1167
|
+
d: "m4.077 16 .6-1.5h2.6459l.6 1.5h2.154l-3.1485-7.8714h-1.857l-3.1485 7.8714h2.154Zm2.4459-3.5h-1.046l.523-1.3074.523 1.3074Z",
|
|
1168
|
+
clipRule: "evenodd"
|
|
1169
|
+
}
|
|
1170
|
+
),
|
|
1171
|
+
/* @__PURE__ */ jsx(
|
|
1172
|
+
"path",
|
|
1173
|
+
{
|
|
1174
|
+
stroke: "currentColor",
|
|
1175
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1176
|
+
d: "M2 19h20"
|
|
1177
|
+
}
|
|
1178
|
+
)
|
|
1179
|
+
);
|
|
1180
|
+
}
|
|
1181
|
+
);
|
|
1182
|
+
IconAltTextUnderline[iconSymbol] = true;
|
|
1183
|
+
|
|
1139
1184
|
const IconAltText = forwardRef(
|
|
1140
1185
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
1141
1186
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -16784,17 +16829,15 @@ const IconHandPointing = forwardRef(
|
|
|
16784
16829
|
);
|
|
16785
16830
|
IconHandPointing[iconSymbol] = true;
|
|
16786
16831
|
|
|
16787
|
-
const
|
|
16788
|
-
(
|
|
16832
|
+
const IconHandRaisedFilledNew = forwardRef(
|
|
16833
|
+
(props, forwardRef2) => {
|
|
16789
16834
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
16790
16835
|
return createElement(
|
|
16791
16836
|
StyledIcon,
|
|
16792
16837
|
{
|
|
16793
16838
|
...props,
|
|
16794
|
-
weight,
|
|
16795
16839
|
debug,
|
|
16796
16840
|
"aria-hidden": true,
|
|
16797
|
-
size,
|
|
16798
16841
|
viewBox: "0 0 24 24",
|
|
16799
16842
|
fill: "none",
|
|
16800
16843
|
ref: forwardRef2
|
|
@@ -16811,6 +16854,70 @@ const IconHandRaisedFilled = forwardRef(
|
|
|
16811
16854
|
);
|
|
16812
16855
|
}
|
|
16813
16856
|
);
|
|
16857
|
+
const IconHandRaisedFilledOld = forwardRef(
|
|
16858
|
+
(props, forwardRef2) => {
|
|
16859
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
16860
|
+
return createElement(
|
|
16861
|
+
StyledIcon,
|
|
16862
|
+
{
|
|
16863
|
+
...props,
|
|
16864
|
+
debug,
|
|
16865
|
+
"aria-hidden": true,
|
|
16866
|
+
viewBox: "0 0 24 24",
|
|
16867
|
+
fill: "none",
|
|
16868
|
+
ref: forwardRef2
|
|
16869
|
+
},
|
|
16870
|
+
/* @__PURE__ */ jsx(
|
|
16871
|
+
"path",
|
|
16872
|
+
{
|
|
16873
|
+
fill: "currentColor",
|
|
16874
|
+
fillRule: "evenodd",
|
|
16875
|
+
d: "M3.5 17c0 6.2701 8.5 8 12.5 3l4.5416-6.3583c.2688-.3763.2456-.8891-.0617-1.2347-.1091-.1227-.1948-.2169-.2049-.222-.165-.1425-.3675-.2175-.5925-.2175-.165 0-.315.045-.45.12-.03.0075-3.2325 1.845-3.2325 1.845v-8.9325c0-.6225-.3775-1-1-1s-1 .3775-1 1v5.25a.75.75 0 0 1-1.5 0v-7.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v7.25a.75.75 0 0 1-1.5 0v-6.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v6.25a.75.75 0 0 1-1.5 0v-4.25c0-.6225-.3775-1-1-1s-1 .3775-1 1v11Z",
|
|
16876
|
+
clipRule: "evenodd"
|
|
16877
|
+
}
|
|
16878
|
+
),
|
|
16879
|
+
/* @__PURE__ */ jsx(
|
|
16880
|
+
"path",
|
|
16881
|
+
{
|
|
16882
|
+
stroke: "currentColor",
|
|
16883
|
+
strokeLinejoin: "round",
|
|
16884
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16885
|
+
d: "M12 12h.0007"
|
|
16886
|
+
}
|
|
16887
|
+
),
|
|
16888
|
+
/* @__PURE__ */ jsx(
|
|
16889
|
+
"path",
|
|
16890
|
+
{
|
|
16891
|
+
stroke: "currentColor",
|
|
16892
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
16893
|
+
d: "M12 12v.0001"
|
|
16894
|
+
}
|
|
16895
|
+
)
|
|
16896
|
+
);
|
|
16897
|
+
}
|
|
16898
|
+
);
|
|
16899
|
+
const IconHandRaisedFilled = forwardRef(
|
|
16900
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
16901
|
+
const [v1] = useNewDesignLanguageIcons();
|
|
16902
|
+
return v1 ? /* @__PURE__ */ jsx(
|
|
16903
|
+
IconHandRaisedFilledNew,
|
|
16904
|
+
{
|
|
16905
|
+
...props,
|
|
16906
|
+
size,
|
|
16907
|
+
weight,
|
|
16908
|
+
ref: forwardRef2
|
|
16909
|
+
}
|
|
16910
|
+
) : /* @__PURE__ */ jsx(
|
|
16911
|
+
IconHandRaisedFilledOld,
|
|
16912
|
+
{
|
|
16913
|
+
...props,
|
|
16914
|
+
size,
|
|
16915
|
+
weight,
|
|
16916
|
+
ref: forwardRef2
|
|
16917
|
+
}
|
|
16918
|
+
);
|
|
16919
|
+
}
|
|
16920
|
+
);
|
|
16814
16921
|
IconHandRaisedFilled[iconSymbol] = true;
|
|
16815
16922
|
|
|
16816
16923
|
const IconHandNew = forwardRef(
|
|
@@ -18032,6 +18139,42 @@ const IconInformationMarkCircle = forwardRef(
|
|
|
18032
18139
|
);
|
|
18033
18140
|
IconInformationMarkCircle[iconSymbol] = true;
|
|
18034
18141
|
|
|
18142
|
+
const IconInsights = forwardRef(
|
|
18143
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18144
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
18145
|
+
return createElement(
|
|
18146
|
+
StyledIcon,
|
|
18147
|
+
{
|
|
18148
|
+
...props,
|
|
18149
|
+
weight,
|
|
18150
|
+
debug,
|
|
18151
|
+
"aria-hidden": true,
|
|
18152
|
+
size,
|
|
18153
|
+
viewBox: "0 0 24 24",
|
|
18154
|
+
fill: "none",
|
|
18155
|
+
ref: forwardRef2
|
|
18156
|
+
},
|
|
18157
|
+
/* @__PURE__ */ jsx(
|
|
18158
|
+
"path",
|
|
18159
|
+
{
|
|
18160
|
+
stroke: "currentColor",
|
|
18161
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18162
|
+
d: "M5 17h10c1.1046 0 2-.8954 2-2v-10c0-1.1046-.8954-2-2-2h-10c-1.1046 0-2 .8954-2 2v10c0 1.1046.8954 2 2 2Z"
|
|
18163
|
+
}
|
|
18164
|
+
),
|
|
18165
|
+
/* @__PURE__ */ jsx(
|
|
18166
|
+
"path",
|
|
18167
|
+
{
|
|
18168
|
+
stroke: "currentColor",
|
|
18169
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
18170
|
+
d: "M6.0307 17.7085c-.1918 1.0878.5345 2.1251 1.6223 2.3169l9.8481 1.7365c1.0878.1918 2.1251-.5345 2.3169-1.6223l1.7365-9.8481c.1918-1.0878-.5345-2.1251-1.6223-2.317l-3.1397-.5535"
|
|
18171
|
+
}
|
|
18172
|
+
)
|
|
18173
|
+
);
|
|
18174
|
+
}
|
|
18175
|
+
);
|
|
18176
|
+
IconInsights[iconSymbol] = true;
|
|
18177
|
+
|
|
18035
18178
|
const IconKanban = forwardRef(
|
|
18036
18179
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
18037
18180
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -26970,6 +27113,35 @@ const IconQuotes = forwardRef(
|
|
|
26970
27113
|
);
|
|
26971
27114
|
IconQuotes[iconSymbol] = true;
|
|
26972
27115
|
|
|
27116
|
+
const IconRaisedHand = forwardRef(
|
|
27117
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
27118
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
27119
|
+
return createElement(
|
|
27120
|
+
StyledIcon,
|
|
27121
|
+
{
|
|
27122
|
+
...props,
|
|
27123
|
+
weight,
|
|
27124
|
+
debug,
|
|
27125
|
+
"aria-hidden": true,
|
|
27126
|
+
size,
|
|
27127
|
+
viewBox: "0 0 24 24",
|
|
27128
|
+
fill: "none",
|
|
27129
|
+
ref: forwardRef2
|
|
27130
|
+
},
|
|
27131
|
+
/* @__PURE__ */ jsx(
|
|
27132
|
+
"path",
|
|
27133
|
+
{
|
|
27134
|
+
stroke: "currentColor",
|
|
27135
|
+
strokeLinejoin: "bevel",
|
|
27136
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
27137
|
+
d: "M10.088 12v-5.25c0-.9665-.5336-1.75-1.5001-1.75s-1.5.7835-1.5 1.75v5.25-3c0-1-.5-2-1.5-2s-1.5 1-1.5 2v4c0 4.4183 1.7499 8 5.75 8h1.5c2 0 3.619-.8689 5.1661-2.4161l4.0032-4.0031c.6138-.6138.6595-1.592.1075-2.2619-.5638-.6841-1.5612-.8145-2.2819-.2983l-2.2448 1.6081v-6.8787c0-.9665-.5336-1.75-1.5001-1.75s-1.5.7835-1.5 1.75v5.25m-2.9999-2v-5.25c0-.9665.5334-1.75 1.4999-1.75s1.5.7835 1.5 1.75v5"
|
|
27138
|
+
}
|
|
27139
|
+
)
|
|
27140
|
+
);
|
|
27141
|
+
}
|
|
27142
|
+
);
|
|
27143
|
+
IconRaisedHand[iconSymbol] = true;
|
|
27144
|
+
|
|
26973
27145
|
const IconRatio169 = forwardRef(
|
|
26974
27146
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
26975
27147
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -31696,6 +31868,35 @@ const IconSocialAdo = forwardRef(
|
|
|
31696
31868
|
);
|
|
31697
31869
|
IconSocialAdo[iconSymbol] = true;
|
|
31698
31870
|
|
|
31871
|
+
const IconSocialAsana = forwardRef(
|
|
31872
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31873
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
31874
|
+
return createElement(
|
|
31875
|
+
StyledIcon,
|
|
31876
|
+
{
|
|
31877
|
+
...props,
|
|
31878
|
+
weight,
|
|
31879
|
+
debug,
|
|
31880
|
+
"aria-hidden": true,
|
|
31881
|
+
size,
|
|
31882
|
+
viewBox: "0 0 24 24",
|
|
31883
|
+
fill: "none",
|
|
31884
|
+
ref: forwardRef2
|
|
31885
|
+
},
|
|
31886
|
+
/* @__PURE__ */ jsx(
|
|
31887
|
+
"path",
|
|
31888
|
+
{
|
|
31889
|
+
fill: "currentColor",
|
|
31890
|
+
fillRule: "evenodd",
|
|
31891
|
+
d: "M17.6504 12.6201c-2.4023 0-4.3496 1.9474-4.3496 4.3498 0 2.4022 1.9473 4.3497 4.3496 4.3497 2.4023 0 4.3496-1.9475 4.3496-4.3497 0-2.4024-1.9473-4.3498-4.3496-4.3498Zm-11.3008.0003c-2.4022 0-4.3496 1.9471-4.3496 4.3495 0 2.4022 1.9474 4.3497 4.3496 4.3497 2.4024 0 4.3499-1.9475 4.3499-4.3497 0-2.4024-1.9475-4.3495-4.3499-4.3495Zm10-5.4375c0 2.4024-1.9474 4.35-4.3496 4.35-2.4023 0-4.3496-1.9476-4.3496-4.35 0-2.402 1.9473-4.3496 4.3496-4.3496 2.4022 0 4.3496 1.9476 4.3496 4.3496Z",
|
|
31892
|
+
clipRule: "evenodd"
|
|
31893
|
+
}
|
|
31894
|
+
)
|
|
31895
|
+
);
|
|
31896
|
+
}
|
|
31897
|
+
);
|
|
31898
|
+
IconSocialAsana[iconSymbol] = true;
|
|
31899
|
+
|
|
31699
31900
|
const IconSocialDrawio = forwardRef(
|
|
31700
31901
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
31701
31902
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -41370,5 +41571,5 @@ const IconWifi = forwardRef(
|
|
|
41370
41571
|
);
|
|
41371
41572
|
IconWifi[iconSymbol] = true;
|
|
41372
41573
|
|
|
41373
|
-
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftRightDotted, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, 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, 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, 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, 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, IconFlipCard, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHandRaisedFilled, IconHeadphones, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterColorSelection, 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, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, 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, 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, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, 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, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, 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, 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, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
41574
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftRightDotted, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, 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, 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, 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, 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, IconFlipCard, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, 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, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, 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, 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, IconRaisedHand, IconRatio169, IconRatio43, IconRatioSquare, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, 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, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, 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, 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, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
|
|
41374
41575
|
//# sourceMappingURL=module.js.map
|