@mirohq/design-system-icons 0.64.0 → 0.65.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 +116 -10
- package/dist/main.js.map +1 -1
- package/dist/module.js +113 -11
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +9 -1
- package/package.json +4 -4
- package/react/align-bottom-group.tsx +68 -0
- package/react/align-bottom.tsx +1 -37
- package/react/align-middle.tsx +32 -0
- package/react/align-top-group.tsx +68 -0
- package/react/align-top.tsx +1 -37
- package/react/board.tsx +2 -2
- package/react/compass.tsx +44 -0
- package/react/flip-card.tsx +4 -4
- package/react/index.ts +4 -0
- package/svg/24/align-bottom-group.svg +2 -0
- package/svg/24/align-bottom-new.svg +1 -1
- package/svg/24/align-middle.svg +2 -0
- package/svg/24/align-top-group.svg +2 -0
- package/svg/24/align-top-new.svg +1 -1
- package/svg/24/board-new.svg +1 -1
- package/svg/24/compass.svg +2 -0
- package/svg/24/flip-card-new.svg +1 -1
- package/svg/meta.json +1056 -2233
package/dist/module.js
CHANGED
|
@@ -319,15 +319,17 @@ const IconAiText = forwardRef(
|
|
|
319
319
|
);
|
|
320
320
|
IconAiText[iconSymbol] = true;
|
|
321
321
|
|
|
322
|
-
const
|
|
323
|
-
(props, forwardRef2) => {
|
|
322
|
+
const IconAlignBottomGroup = forwardRef(
|
|
323
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
324
324
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
325
325
|
return createElement(
|
|
326
326
|
StyledIcon,
|
|
327
327
|
{
|
|
328
328
|
...props,
|
|
329
|
+
weight,
|
|
329
330
|
debug,
|
|
330
331
|
"aria-hidden": true,
|
|
332
|
+
size,
|
|
331
333
|
viewBox: "0 0 24 24",
|
|
332
334
|
fill: "none",
|
|
333
335
|
ref: forwardRef2
|
|
@@ -393,6 +395,25 @@ const IconAlignBottomNew = forwardRef(
|
|
|
393
395
|
);
|
|
394
396
|
}
|
|
395
397
|
);
|
|
398
|
+
IconAlignBottomGroup[iconSymbol] = true;
|
|
399
|
+
|
|
400
|
+
const IconAlignBottomNew = forwardRef(
|
|
401
|
+
(props, forwardRef2) => {
|
|
402
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
403
|
+
return createElement(
|
|
404
|
+
StyledIcon,
|
|
405
|
+
{
|
|
406
|
+
...props,
|
|
407
|
+
debug,
|
|
408
|
+
"aria-hidden": true,
|
|
409
|
+
viewBox: "0 0 24 24",
|
|
410
|
+
fill: "none",
|
|
411
|
+
ref: forwardRef2
|
|
412
|
+
},
|
|
413
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", d: "M4.5 15.5h15v1h-15zM4.5 19.5h15v1h-15z" })
|
|
414
|
+
);
|
|
415
|
+
}
|
|
416
|
+
);
|
|
396
417
|
const IconAlignBottomOld = forwardRef(
|
|
397
418
|
(props, forwardRef2) => {
|
|
398
419
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -793,6 +814,27 @@ const IconAlignLeft = forwardRef(
|
|
|
793
814
|
);
|
|
794
815
|
IconAlignLeft[iconSymbol] = true;
|
|
795
816
|
|
|
817
|
+
const IconAlignMiddle = forwardRef(
|
|
818
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
819
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
820
|
+
return createElement(
|
|
821
|
+
StyledIcon,
|
|
822
|
+
{
|
|
823
|
+
...props,
|
|
824
|
+
weight,
|
|
825
|
+
debug,
|
|
826
|
+
"aria-hidden": true,
|
|
827
|
+
size,
|
|
828
|
+
viewBox: "0 0 24 24",
|
|
829
|
+
fill: "none",
|
|
830
|
+
ref: forwardRef2
|
|
831
|
+
},
|
|
832
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", d: "M4.5 9.5h15v1h-15zM4.5 13.5h15v1h-15z" })
|
|
833
|
+
);
|
|
834
|
+
}
|
|
835
|
+
);
|
|
836
|
+
IconAlignMiddle[iconSymbol] = true;
|
|
837
|
+
|
|
796
838
|
const IconAlignRightNew = forwardRef(
|
|
797
839
|
(props, forwardRef2) => {
|
|
798
840
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -890,15 +932,17 @@ const IconAlignRight = forwardRef(
|
|
|
890
932
|
);
|
|
891
933
|
IconAlignRight[iconSymbol] = true;
|
|
892
934
|
|
|
893
|
-
const
|
|
894
|
-
(props, forwardRef2) => {
|
|
935
|
+
const IconAlignTopGroup = forwardRef(
|
|
936
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
895
937
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
896
938
|
return createElement(
|
|
897
939
|
StyledIcon,
|
|
898
940
|
{
|
|
899
941
|
...props,
|
|
942
|
+
weight,
|
|
900
943
|
debug,
|
|
901
944
|
"aria-hidden": true,
|
|
945
|
+
size,
|
|
902
946
|
viewBox: "0 0 24 24",
|
|
903
947
|
fill: "none",
|
|
904
948
|
ref: forwardRef2
|
|
@@ -964,6 +1008,25 @@ const IconAlignTopNew = forwardRef(
|
|
|
964
1008
|
);
|
|
965
1009
|
}
|
|
966
1010
|
);
|
|
1011
|
+
IconAlignTopGroup[iconSymbol] = true;
|
|
1012
|
+
|
|
1013
|
+
const IconAlignTopNew = forwardRef(
|
|
1014
|
+
(props, forwardRef2) => {
|
|
1015
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
1016
|
+
return createElement(
|
|
1017
|
+
StyledIcon,
|
|
1018
|
+
{
|
|
1019
|
+
...props,
|
|
1020
|
+
debug,
|
|
1021
|
+
"aria-hidden": true,
|
|
1022
|
+
viewBox: "0 0 24 24",
|
|
1023
|
+
fill: "none",
|
|
1024
|
+
ref: forwardRef2
|
|
1025
|
+
},
|
|
1026
|
+
/* @__PURE__ */ jsx("path", { stroke: "currentColor", d: "M4.5 3.5h15v1h-15zM4.5 7.5h15v1h-15z" })
|
|
1027
|
+
);
|
|
1028
|
+
}
|
|
1029
|
+
);
|
|
967
1030
|
const IconAlignTopOld = forwardRef(
|
|
968
1031
|
(props, forwardRef2) => {
|
|
969
1032
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -4705,7 +4768,7 @@ const IconBoardNew = forwardRef(
|
|
|
4705
4768
|
{
|
|
4706
4769
|
fill: "currentColor",
|
|
4707
4770
|
fillRule: "evenodd",
|
|
4708
|
-
d: "
|
|
4771
|
+
d: "m7.9997 18-1.6667 4h2.1667l1.6666-4h-2.1666Zm5.8333 0 1.6667 4h2.1666l-1.6666-4h-2.1667Z",
|
|
4709
4772
|
clipRule: "evenodd"
|
|
4710
4773
|
}
|
|
4711
4774
|
),
|
|
@@ -4715,7 +4778,7 @@ const IconBoardNew = forwardRef(
|
|
|
4715
4778
|
stroke: "currentColor",
|
|
4716
4779
|
strokeLinejoin: "bevel",
|
|
4717
4780
|
strokeWidth: "var(--svg-stroke-width)",
|
|
4718
|
-
d: "
|
|
4781
|
+
d: "M12 1v3m-7 14h14c1.1046 0 2-.8954 2-2v-10c0-1.1046-.8954-2-2-2h-14c-1.1046 0-2 .8954-2 2v10c0 1.1046.8954 2 2 2ZM11 13h7"
|
|
4719
4782
|
}
|
|
4720
4783
|
)
|
|
4721
4784
|
);
|
|
@@ -9789,6 +9852,45 @@ const IconCommentGroup = forwardRef(
|
|
|
9789
9852
|
);
|
|
9790
9853
|
IconCommentGroup[iconSymbol] = true;
|
|
9791
9854
|
|
|
9855
|
+
const IconCompass = forwardRef(
|
|
9856
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
9857
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
9858
|
+
return createElement(
|
|
9859
|
+
StyledIcon,
|
|
9860
|
+
{
|
|
9861
|
+
...props,
|
|
9862
|
+
weight,
|
|
9863
|
+
debug,
|
|
9864
|
+
"aria-hidden": true,
|
|
9865
|
+
size,
|
|
9866
|
+
viewBox: "0 0 24 24",
|
|
9867
|
+
fill: "none",
|
|
9868
|
+
ref: forwardRef2
|
|
9869
|
+
},
|
|
9870
|
+
/* @__PURE__ */ jsx(
|
|
9871
|
+
"circle",
|
|
9872
|
+
{
|
|
9873
|
+
cx: 12,
|
|
9874
|
+
cy: 12,
|
|
9875
|
+
r: 9,
|
|
9876
|
+
stroke: "currentColor",
|
|
9877
|
+
strokeWidth: "var(--svg-stroke-width)"
|
|
9878
|
+
}
|
|
9879
|
+
),
|
|
9880
|
+
/* @__PURE__ */ jsx(
|
|
9881
|
+
"path",
|
|
9882
|
+
{
|
|
9883
|
+
fill: "currentColor",
|
|
9884
|
+
fillRule: "evenodd",
|
|
9885
|
+
d: "m8.0414 14.9461 1.6003-4.7993a.7998.7998 0 0 1 .5041-.506l4.8009-1.5997a.8004.8004 0 0 1 1.0319.575.8001.8001 0 0 1-.0197.4368l-1.6003 4.7994a.8009.8009 0 0 1-.5041.5059l-4.801 1.5998a.801.801 0 0 1-.254.042.8001.8001 0 0 1-.7581-1.0539Zm5.8951-4.8813-2.9045.9679-.9682 2.9036 2.9045-.9679.9682-2.9036Z",
|
|
9886
|
+
clipRule: "evenodd"
|
|
9887
|
+
}
|
|
9888
|
+
)
|
|
9889
|
+
);
|
|
9890
|
+
}
|
|
9891
|
+
);
|
|
9892
|
+
IconCompass[iconSymbol] = true;
|
|
9893
|
+
|
|
9792
9894
|
const IconConeSerpentineNew = forwardRef(
|
|
9793
9895
|
(props, forwardRef2) => {
|
|
9794
9896
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -14934,7 +15036,7 @@ const IconFlipCardNew = forwardRef(
|
|
|
14934
15036
|
...props,
|
|
14935
15037
|
debug,
|
|
14936
15038
|
"aria-hidden": true,
|
|
14937
|
-
viewBox: "0 0
|
|
15039
|
+
viewBox: "0 0 24 24",
|
|
14938
15040
|
fill: "none",
|
|
14939
15041
|
ref: forwardRef2
|
|
14940
15042
|
},
|
|
@@ -14944,7 +15046,7 @@ const IconFlipCardNew = forwardRef(
|
|
|
14944
15046
|
stroke: "currentColor",
|
|
14945
15047
|
strokeLinejoin: "round",
|
|
14946
15048
|
strokeWidth: "var(--svg-stroke-width)",
|
|
14947
|
-
d: "
|
|
15049
|
+
d: "M14 14c-.3904.0149-4.292-.0012-5 0-5 0-6.7242-.4392-7-2.2701-.025-.1654-.007-.3327 0-.5.0514-1.2141.9658-2.4353 3.5-2.9971.4488-.0995.9475-.1783 1.5-.2328"
|
|
14948
15050
|
}
|
|
14949
15051
|
),
|
|
14950
15052
|
/* @__PURE__ */ jsx(
|
|
@@ -14953,7 +15055,7 @@ const IconFlipCardNew = forwardRef(
|
|
|
14953
15055
|
stroke: "currentColor",
|
|
14954
15056
|
strokeLinejoin: "bevel",
|
|
14955
15057
|
strokeWidth: "var(--svg-stroke-width)",
|
|
14956
|
-
d: "
|
|
15058
|
+
d: "m11 11 3 3-3 3"
|
|
14957
15059
|
}
|
|
14958
15060
|
),
|
|
14959
15061
|
/* @__PURE__ */ jsx(
|
|
@@ -14961,7 +15063,7 @@ const IconFlipCardNew = forwardRef(
|
|
|
14961
15063
|
{
|
|
14962
15064
|
stroke: "currentColor",
|
|
14963
15065
|
strokeWidth: "var(--svg-stroke-width)",
|
|
14964
|
-
d: "
|
|
15066
|
+
d: "M7 17v2c0 1.1046.8954 2 2 2h10c1.1046 0 2-.8954 2-2v-14c0-1.1046-.8954-2-2-2h-10c-1.1046 0-2 .8954-2 2v6"
|
|
14965
15067
|
}
|
|
14966
15068
|
)
|
|
14967
15069
|
);
|
|
@@ -39889,5 +39991,5 @@ const IconWifi = forwardRef(
|
|
|
39889
39991
|
);
|
|
39890
39992
|
IconWifi[iconSymbol] = true;
|
|
39891
39993
|
|
|
39892
|
-
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, 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, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, 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, 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, IconHeadphones, 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, 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, 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, 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, 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, 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, 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, IconWarning, IconWifi, IconWifiExclamation };
|
|
39994
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, 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, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, 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, 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, IconHeadphones, 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, 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, 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, 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, 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, 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, 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, IconWarning, IconWifi, IconWifiExclamation };
|
|
39893
39995
|
//# sourceMappingURL=module.js.map
|