@mirohq/design-system-icons 0.16.0 → 0.18.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 +96 -36
- package/dist/main.js.map +1 -1
- package/dist/module.js +94 -37
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +2 -2
- package/react/chat-lines-dot.tsx +34 -0
- package/react/index.ts +3 -0
- package/react/rss.tsx +33 -0
- package/react/star-half.tsx +37 -0
- package/react/stroke-1.tsx +2 -6
- package/react/stroke-2.tsx +2 -6
- package/react/stroke-3.tsx +2 -6
- package/react/stroke-4.tsx +2 -6
- package/react/stroke-5.tsx +2 -6
- package/react/stroke-6.tsx +2 -6
- package/svg/24/chat-lines-dot.svg +2 -0
- package/svg/24/rss.svg +2 -0
- package/svg/24/star-half.svg +2 -0
- package/svg/24/stroke-1.svg +1 -1
- package/svg/24/stroke-2.svg +1 -1
- package/svg/24/stroke-3.svg +1 -1
- package/svg/24/stroke-4.svg +1 -1
- package/svg/24/stroke-5.svg +1 -1
- package/svg/24/stroke-6.svg +1 -1
- package/svg/meta.json +27 -1
package/dist/module.js
CHANGED
|
@@ -1705,6 +1705,34 @@ const IconChatLinesCross = forwardRef(
|
|
|
1705
1705
|
)
|
|
1706
1706
|
);
|
|
1707
1707
|
|
|
1708
|
+
const IconChatLinesDot = forwardRef(
|
|
1709
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => createElement(
|
|
1710
|
+
StyledIcon,
|
|
1711
|
+
{
|
|
1712
|
+
...props,
|
|
1713
|
+
weight,
|
|
1714
|
+
size,
|
|
1715
|
+
viewBox: "0 0 24 24",
|
|
1716
|
+
fill: "none",
|
|
1717
|
+
ref: forwardRef2
|
|
1718
|
+
},
|
|
1719
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
1720
|
+
stroke: "currentColor",
|
|
1721
|
+
strokeLinecap: "round",
|
|
1722
|
+
strokeLinejoin: "round",
|
|
1723
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
1724
|
+
d: "M8 9h8m-8 4h8m-2-9h-10c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1h5l2.9293 2.9293a.1.1 0 0 0 .1414 0l2.9293-2.9293h5c.5523 0 1-.4477 1-1v-7",
|
|
1725
|
+
vectorEffect: "non-scaling-stroke"
|
|
1726
|
+
}),
|
|
1727
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
1728
|
+
cx: 20,
|
|
1729
|
+
cy: 4,
|
|
1730
|
+
r: 3,
|
|
1731
|
+
fill: "currentColor"
|
|
1732
|
+
})
|
|
1733
|
+
)
|
|
1734
|
+
);
|
|
1735
|
+
|
|
1708
1736
|
const IconChatLinesEyeOpen = forwardRef(
|
|
1709
1737
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => createElement(
|
|
1710
1738
|
StyledIcon,
|
|
@@ -7216,6 +7244,33 @@ const IconRssRectangle = forwardRef(
|
|
|
7216
7244
|
)
|
|
7217
7245
|
);
|
|
7218
7246
|
|
|
7247
|
+
const IconRss = forwardRef(
|
|
7248
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => createElement(
|
|
7249
|
+
StyledIcon,
|
|
7250
|
+
{
|
|
7251
|
+
...props,
|
|
7252
|
+
weight,
|
|
7253
|
+
size,
|
|
7254
|
+
viewBox: "0 0 24 24",
|
|
7255
|
+
fill: "none",
|
|
7256
|
+
ref: forwardRef2
|
|
7257
|
+
},
|
|
7258
|
+
/* @__PURE__ */ React.createElement("circle", {
|
|
7259
|
+
cx: 3.5,
|
|
7260
|
+
cy: 20.5,
|
|
7261
|
+
r: 1.5,
|
|
7262
|
+
fill: "currentColor"
|
|
7263
|
+
}),
|
|
7264
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
7265
|
+
stroke: "currentColor",
|
|
7266
|
+
strokeLinecap: "round",
|
|
7267
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
7268
|
+
d: "M3 12c5 0 9 3 9 9m-9-17c10 0 17 7 17 17",
|
|
7269
|
+
vectorEffect: "non-scaling-stroke"
|
|
7270
|
+
})
|
|
7271
|
+
)
|
|
7272
|
+
);
|
|
7273
|
+
|
|
7219
7274
|
const IconScissors = forwardRef(
|
|
7220
7275
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => createElement(
|
|
7221
7276
|
StyledIcon,
|
|
@@ -8321,6 +8376,32 @@ const IconStarFilled = forwardRef(
|
|
|
8321
8376
|
)
|
|
8322
8377
|
);
|
|
8323
8378
|
|
|
8379
|
+
const IconStarHalf = forwardRef(
|
|
8380
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => createElement(
|
|
8381
|
+
StyledIcon,
|
|
8382
|
+
{
|
|
8383
|
+
...props,
|
|
8384
|
+
weight,
|
|
8385
|
+
size,
|
|
8386
|
+
viewBox: "0 0 24 24",
|
|
8387
|
+
fill: "none",
|
|
8388
|
+
ref: forwardRef2
|
|
8389
|
+
},
|
|
8390
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
8391
|
+
stroke: "currentColor",
|
|
8392
|
+
strokeLinecap: "round",
|
|
8393
|
+
strokeLinejoin: "round",
|
|
8394
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
8395
|
+
d: "m15 9-2.7764-5.5528c-.0921-.1843-.3551-.1843-.4472 0l-2.7764 5.5528-5.5535.9256c-.194.0323-.2765.2657-.1458.4127l3.6993 4.1617-.9265 6.0222c-.0308.2005.1774.3523.359.2616l5.5675-2.7838 5.5676 2.7838c.1815.0907.3897-.0611.3589-.2616l-.9265-6.0222 3.6993-4.1617c.1307-.147.0483-.3804-.1457-.4127l-5.5536-.9256Z",
|
|
8396
|
+
vectorEffect: "non-scaling-stroke"
|
|
8397
|
+
}),
|
|
8398
|
+
/* @__PURE__ */ React.createElement("path", {
|
|
8399
|
+
fill: "currentColor",
|
|
8400
|
+
d: "m6.4324 20.7838 5.5676-2.7838v-13.941c0-.2638-.3556-.3477-.4736-.1118l-2.5264 5.0528-5.5535.9256c-.194.0323-.2765.2657-.1458.4127l3.6993 4.1617-.9265 6.0222c-.0308.2005.1774.3523.359.2616Z"
|
|
8401
|
+
})
|
|
8402
|
+
)
|
|
8403
|
+
);
|
|
8404
|
+
|
|
8324
8405
|
const IconStar = forwardRef(
|
|
8325
8406
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => createElement(
|
|
8326
8407
|
StyledIcon,
|
|
@@ -8583,12 +8664,8 @@ const IconStroke1 = forwardRef(
|
|
|
8583
8664
|
/* @__PURE__ */ React.createElement("g", {
|
|
8584
8665
|
clipPath: "url(#a)"
|
|
8585
8666
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
strokeLinejoin: "round",
|
|
8589
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8590
|
-
d: "m5.1056 17.8101 13.7888-11.5702",
|
|
8591
|
-
vectorEffect: "non-scaling-stroke"
|
|
8667
|
+
fill: "currentColor",
|
|
8668
|
+
d: "M4.3182 19.6818c-.4243-.4242-.4243-1.1121 0-1.5364l13.8272-13.8272c.4243-.4243 1.1122-.4243 1.5364 0 .4243.4242.4243 1.1121 0 1.5363l-13.8272 13.8273c-.4243.4243-1.1121.4243-1.5364 0Z"
|
|
8592
8669
|
})),
|
|
8593
8670
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
8594
8671
|
id: "a"
|
|
@@ -8613,12 +8690,8 @@ const IconStroke2 = forwardRef(
|
|
|
8613
8690
|
/* @__PURE__ */ React.createElement("g", {
|
|
8614
8691
|
clipPath: "url(#a)"
|
|
8615
8692
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
8616
|
-
|
|
8617
|
-
|
|
8618
|
-
strokeLinejoin: "round",
|
|
8619
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8620
|
-
d: "m5.8716 17.1672 12.2568-10.2845",
|
|
8621
|
-
vectorEffect: "non-scaling-stroke"
|
|
8693
|
+
fill: "currentColor",
|
|
8694
|
+
d: "M4.612 19.388c-.816-.8161-.816-2.1392 0-2.9552l11.8208-11.8208c.816-.816 2.1391-.816 2.9552 0 .816.816.816 2.1392 0 2.9552l-11.8208 11.8208c-.816.816-2.1391.816-2.9552 0Z"
|
|
8622
8695
|
})),
|
|
8623
8696
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
8624
8697
|
id: "a"
|
|
@@ -8643,12 +8716,8 @@ const IconStroke3 = forwardRef(
|
|
|
8643
8716
|
/* @__PURE__ */ React.createElement("g", {
|
|
8644
8717
|
clipPath: "url(#a)"
|
|
8645
8718
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
8646
|
-
|
|
8647
|
-
|
|
8648
|
-
strokeLinejoin: "round",
|
|
8649
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8650
|
-
d: "m6.6378 16.5244 10.7246-8.999",
|
|
8651
|
-
vectorEffect: "non-scaling-stroke"
|
|
8719
|
+
fill: "currentColor",
|
|
8720
|
+
d: "M4.8842 19.1158c-1.179-1.179-1.179-3.0905 0-4.2695l9.9621-9.962c1.179-1.179 3.0905-1.179 4.2695 0 1.1789 1.179 1.1789 3.0904 0 4.2694l-9.9621 9.9621c-1.179 1.1789-3.0905 1.1789-4.2695 0Z"
|
|
8652
8721
|
})),
|
|
8653
8722
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
8654
8723
|
id: "a"
|
|
@@ -8673,12 +8742,8 @@ const IconStroke4 = forwardRef(
|
|
|
8673
8742
|
/* @__PURE__ */ React.createElement("g", {
|
|
8674
8743
|
clipPath: "url(#a)"
|
|
8675
8744
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
strokeLinejoin: "round",
|
|
8679
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8680
|
-
d: "m7.4037 15.8818 9.1926-7.7134",
|
|
8681
|
-
vectorEffect: "non-scaling-stroke"
|
|
8745
|
+
fill: "currentColor",
|
|
8746
|
+
d: "M5.137 18.8629c-1.516-1.5161-1.516-3.9742 0-5.4903l8.2356-8.2355c1.5161-1.5161 3.9742-1.5161 5.4903 0 1.5161 1.5161 1.5161 3.9742 0 5.4903l-8.2355 8.2355c-1.5161 1.5161-3.9742 1.5161-5.4903 0Z"
|
|
8682
8747
|
})),
|
|
8683
8748
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
8684
8749
|
id: "a"
|
|
@@ -8703,12 +8768,8 @@ const IconStroke5 = forwardRef(
|
|
|
8703
8768
|
/* @__PURE__ */ React.createElement("g", {
|
|
8704
8769
|
clipPath: "url(#a)"
|
|
8705
8770
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
8706
|
-
|
|
8707
|
-
|
|
8708
|
-
strokeLinejoin: "round",
|
|
8709
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8710
|
-
d: "m8.1697 15.239 7.6605-6.4278",
|
|
8711
|
-
vectorEffect: "non-scaling-stroke"
|
|
8771
|
+
fill: "currentColor",
|
|
8772
|
+
d: "M5.3726 18.6274c-1.8301-1.8301-1.8301-4.7973 0-6.6274l6.6274-6.6274c1.8301-1.8301 4.7973-1.8301 6.6274 0 1.8301 1.83 1.8301 4.7973 0 6.6274l-6.6274 6.6274c-1.8301 1.8301-4.7973 1.8301-6.6274 0Z"
|
|
8712
8773
|
})),
|
|
8713
8774
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
8714
8775
|
id: "a"
|
|
@@ -8733,12 +8794,8 @@ const IconStroke6 = forwardRef(
|
|
|
8733
8794
|
/* @__PURE__ */ React.createElement("g", {
|
|
8734
8795
|
clipPath: "url(#a)"
|
|
8735
8796
|
}, /* @__PURE__ */ React.createElement("path", {
|
|
8736
|
-
|
|
8737
|
-
|
|
8738
|
-
strokeLinejoin: "round",
|
|
8739
|
-
strokeWidth: "var(--svg-stroke-width)",
|
|
8740
|
-
d: "m8.9358 14.5959 6.1284-5.1422",
|
|
8741
|
-
vectorEffect: "non-scaling-stroke"
|
|
8797
|
+
fill: "currentColor",
|
|
8798
|
+
d: "M5.2574 18.6924c-2.3432-2.3432-2.3432-6.1421 0-8.4853l4.9497-4.9497c2.3432-2.3432 6.1421-2.3432 8.4853 0 2.3431 2.3431 2.3431 6.1421 0 8.4852l-4.9498 4.9498c-2.3431 2.3431-6.1421 2.3431-8.4852 0Z"
|
|
8742
8799
|
})),
|
|
8743
8800
|
/* @__PURE__ */ React.createElement("defs", null, /* @__PURE__ */ React.createElement("clipPath", {
|
|
8744
8801
|
id: "a"
|
|
@@ -10080,5 +10137,5 @@ const IconWallet = forwardRef(
|
|
|
10080
10137
|
)
|
|
10081
10138
|
);
|
|
10082
10139
|
|
|
10083
|
-
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArticle, IconAt, IconBackgroundColor, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMap, IconMegaphone, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconOffice, IconPaintBucket, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPentagon, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
10140
|
+
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArticle, IconAt, IconBackgroundColor, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMap, IconMegaphone, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconOffice, IconPaintBucket, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPentagon, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
10084
10141
|
//# sourceMappingURL=module.js.map
|