@mirohq/design-system-icons 1.12.0 → 1.14.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 +335 -5
- package/dist/main.js.map +1 -1
- package/dist/module.js +324 -6
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +25 -1
- package/package.json +3 -3
- package/react/ai-cursor.tsx +34 -0
- package/react/arrow-clockwise-into-rectangle.tsx +34 -0
- package/react/bear.tsx +34 -0
- package/react/car.tsx +36 -0
- package/react/chart-line.tsx +34 -0
- package/react/chart-number.tsx +34 -0
- package/react/chart-progress.tsx +34 -0
- package/react/drink-burger.tsx +34 -0
- package/react/heart-music-note.tsx +36 -0
- package/react/index.ts +12 -0
- package/react/magnifying-glass-minus.tsx +1 -3
- package/react/magnifying-glass-plus.tsx +1 -1
- package/react/orbit-double.tsx +36 -0
- package/react/proto-radio.tsx +1 -1
- package/react/square-pencil.tsx +34 -0
- package/react/tennis-ball.tsx +36 -0
- package/svg/24/ai-cursor.svg +2 -0
- package/svg/24/arrow-clockwise-into-rectangle.svg +2 -0
- package/svg/24/bear.svg +2 -0
- package/svg/24/car.svg +2 -0
- package/svg/24/chart-line.svg +2 -0
- package/svg/24/chart-number.svg +2 -0
- package/svg/24/chart-progress.svg +2 -0
- package/svg/24/drink-burger.svg +2 -0
- package/svg/24/heart-music-note.svg +2 -0
- package/svg/24/magnifying-glass-minus.svg +1 -1
- package/svg/24/magnifying-glass-plus.svg +1 -1
- package/svg/24/orbit-double.svg +2 -0
- package/svg/24/proto-radio.svg +1 -1
- package/svg/24/square-pencil.svg +2 -0
- package/svg/24/tennis-ball.svg +2 -0
- package/svg/meta.json +131 -6
package/dist/types.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ declare const IconAddLineLeft: IconComponentType;
|
|
|
42
42
|
|
|
43
43
|
declare const IconAddLineRight: IconComponentType;
|
|
44
44
|
|
|
45
|
+
declare const IconAiCursor: IconComponentType;
|
|
46
|
+
|
|
45
47
|
declare const IconAiText: IconComponentType;
|
|
46
48
|
|
|
47
49
|
declare const IconAlignBottomGroup: IconComponentType;
|
|
@@ -82,6 +84,8 @@ declare const IconArrowBoxOut: IconComponentType;
|
|
|
82
84
|
|
|
83
85
|
declare const IconArrowClockwiseDownRight: IconComponentType;
|
|
84
86
|
|
|
87
|
+
declare const IconArrowClockwiseIntoRectangle: IconComponentType;
|
|
88
|
+
|
|
85
89
|
declare const IconArrowClockwiseUpLeft: IconComponentType;
|
|
86
90
|
|
|
87
91
|
declare const IconArrowCounterClockwiseDownLeft: IconComponentType;
|
|
@@ -168,6 +172,8 @@ declare const IconBadge: IconComponentType;
|
|
|
168
172
|
|
|
169
173
|
declare const IconBarrel: IconComponentType;
|
|
170
174
|
|
|
175
|
+
declare const IconBear: IconComponentType;
|
|
176
|
+
|
|
171
177
|
declare const IconBellSlash: IconComponentType;
|
|
172
178
|
|
|
173
179
|
declare const IconBellTilt: IconComponentType;
|
|
@@ -212,6 +218,8 @@ declare const IconCaptionAlong: IconComponentType;
|
|
|
212
218
|
|
|
213
219
|
declare const IconCaptionHorizontal: IconComponentType;
|
|
214
220
|
|
|
221
|
+
declare const IconCar: IconComponentType;
|
|
222
|
+
|
|
215
223
|
declare const IconCardCircles: IconComponentType;
|
|
216
224
|
|
|
217
225
|
declare const IconCardNumberThree: IconComponentType;
|
|
@@ -224,6 +232,12 @@ declare const IconChartBarYSimple: IconComponentType;
|
|
|
224
232
|
|
|
225
233
|
declare const IconChartBarY: IconComponentType;
|
|
226
234
|
|
|
235
|
+
declare const IconChartLine: IconComponentType;
|
|
236
|
+
|
|
237
|
+
declare const IconChartNumber: IconComponentType;
|
|
238
|
+
|
|
239
|
+
declare const IconChartProgress: IconComponentType;
|
|
240
|
+
|
|
227
241
|
declare const IconChatCheck: IconComponentType;
|
|
228
242
|
|
|
229
243
|
declare const IconChatCross: IconComponentType;
|
|
@@ -426,6 +440,8 @@ declare const IconDotsTwo: IconComponentType;
|
|
|
426
440
|
|
|
427
441
|
declare const IconDownload: IconComponentType;
|
|
428
442
|
|
|
443
|
+
declare const IconDrinkBurger: IconComponentType;
|
|
444
|
+
|
|
429
445
|
declare const IconEnvelope: IconComponentType;
|
|
430
446
|
|
|
431
447
|
declare const IconEraser: IconComponentType;
|
|
@@ -514,6 +530,8 @@ declare const IconHeadsetPerson: IconComponentType;
|
|
|
514
530
|
|
|
515
531
|
declare const IconHeartFilled: IconComponentType;
|
|
516
532
|
|
|
533
|
+
declare const IconHeartMusicNote: IconComponentType;
|
|
534
|
+
|
|
517
535
|
declare const IconHeart: IconComponentType;
|
|
518
536
|
|
|
519
537
|
declare const IconHexagon: IconComponentType;
|
|
@@ -684,6 +702,8 @@ declare const IconOctagon: IconComponentType;
|
|
|
684
702
|
|
|
685
703
|
declare const IconOffice: IconComponentType;
|
|
686
704
|
|
|
705
|
+
declare const IconOrbitDouble: IconComponentType;
|
|
706
|
+
|
|
687
707
|
declare const IconOrgChart: IconComponentType;
|
|
688
708
|
|
|
689
709
|
declare const IconOrientationHorizontal: IconComponentType;
|
|
@@ -964,6 +984,8 @@ declare const IconSquareFrame2LinesCircle: IconComponentType;
|
|
|
964
984
|
|
|
965
985
|
declare const IconSquareLineSquareDashed: IconComponentType;
|
|
966
986
|
|
|
987
|
+
declare const IconSquarePencil: IconComponentType;
|
|
988
|
+
|
|
967
989
|
declare const IconSquareRounded: IconComponentType;
|
|
968
990
|
|
|
969
991
|
declare const IconSquareStarScribble: IconComponentType;
|
|
@@ -1044,6 +1066,8 @@ declare const IconTag: IconComponentType;
|
|
|
1044
1066
|
|
|
1045
1067
|
declare const IconTasks: IconComponentType;
|
|
1046
1068
|
|
|
1069
|
+
declare const IconTennisBall: IconComponentType;
|
|
1070
|
+
|
|
1047
1071
|
declare const IconTextAColorSelection: IconComponentType;
|
|
1048
1072
|
|
|
1049
1073
|
declare const IconTextAHorizontal: IconComponentType;
|
|
@@ -1192,4 +1216,4 @@ declare const IconWifiExclamation: IconComponentType;
|
|
|
1192
1216
|
|
|
1193
1217
|
declare const IconWifi: IconComponentType;
|
|
1194
1218
|
|
|
1195
|
-
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, IconComponentType, 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, IconProps, 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 };
|
|
1219
|
+
export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiCursor, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseIntoRectangle, 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, IconBear, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBoxCaptionsFilled, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCar, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChartLine, IconChartNumber, IconChartProgress, 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, IconComponentType, 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, IconDrinkBurger, 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, IconHeartMusicNote, 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, IconOrbitDouble, 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, IconProps, 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, IconSquarePencil, 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, IconTennisBall, 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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-icons",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"@mirohq/design-system-base-icon": "^1.0.0",
|
|
35
35
|
"@mirohq/design-system-primitive": "^2.0.0",
|
|
36
36
|
"@mirohq/design-system-stitches": "^3.0.1",
|
|
37
|
-
"@mirohq/design-system-
|
|
38
|
-
"@mirohq/design-system-
|
|
37
|
+
"@mirohq/design-system-utils": "^1.1.0",
|
|
38
|
+
"@mirohq/design-system-use-local-storage": "^1.0.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@svgr/cli": "^6.5.1",
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconAiCursor: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M19.25 1A3.75 3.75 0 0 0 23 4.75v1.5A3.75 3.75 0 0 0 19.25 10h-1.5A3.75 3.75 0 0 0 14 6.25v-1.5A3.75 3.75 0 0 0 17.75 1h1.5ZM4.662 22.607l2.025.574c2.482-4.35 7.221-7 12.228-6.834l.598-2.108L5.138 3.822 3.046 4.99l1.616 17.617Zm11.771-8.132a15.648 15.648 0 0 0-9.998 5.559L5.176 6.319l11.257 8.156Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconAiCursor[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconArrowClockwiseIntoRectangle: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M6 17v-.188h2V17a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v.188H6V7a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H9a3 3 0 0 1-3-3Zm-1.636-6.263c1.814-1.604 4.71-1.604 6.523 0l1.113.986V10h2v4l-1 1H8.479v-2h1.946l-.863-.765c-1.057-.934-2.816-.934-3.873 0L3.663 14.03l-1.326-1.498 2.027-1.794Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconArrowClockwiseIntoRectangle[iconSymbol] = true
|
package/react/bear.tsx
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconBear: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M17.85 2C20.777 2 23 4.455 23 7.294a5.361 5.361 0 0 1-1.106 3.271 9.02 9.02 0 0 1 .206 1.906C22.1 17.869 17.438 22 12 22c-5.268 0-9.807-3.877-10.086-9.027L1.9 12.47c0-.653.073-1.29.205-1.906A5.363 5.363 0 0 1 1 7.294C1 4.455 3.223 2 6.15 2l.351.012a5.037 5.037 0 0 1 2.962 1.234 10.682 10.682 0 0 1 5.072 0A5.034 5.034 0 0 1 17.85 2Zm0 2c-1.125 0-2.11.618-2.667 1.546A8.6 8.6 0 0 0 12 4.94a8.6 8.6 0 0 0-3.184.605C8.26 4.618 7.276 4 6.15 4 4.41 4 3 5.475 3 7.294c0 1.118.535 2.105 1.35 2.7a7.042 7.042 0 0 0-.45 2.477C3.9 16.629 7.527 20 12 20s8.1-3.371 8.1-7.53c0-.867-.16-1.7-.45-2.476a3.334 3.334 0 0 0 1.35-2.7C21 5.474 19.59 4 17.85 4ZM13 16v2h-2v-2l-2-2h6l-2 2Zm-4-4H7v-2h2v2Zm8 0h-2v-2h2v2Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconBear[iconSymbol] = true
|
package/react/car.tsx
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconCar: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
fillRule='evenodd'
|
|
29
|
+
d='M10 16H6v-2h4v2Zm8 0h-4v-2h4v2ZM16.83 4.006a2 2 0 0 1 1.69 1.206L19.285 7H22v2h-1.737L22 12.648V18l-2 2v2h-4v-2H8v2H4v-2l-2-2v-5.352L3.737 9H2V7h2.714l.766-1.788A2 2 0 0 1 7.318 4h9.364l.148.006ZM4 13.1V18h16v-4.9L19 11H5l-1 2.1ZM6.033 9h11.934l-1.285-3H7.318L6.033 9Z'
|
|
30
|
+
clipRule='evenodd'
|
|
31
|
+
/>
|
|
32
|
+
)
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
IconCar[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconChartLine: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M22 22H3l-1-1V4h2v16h18v2ZM11.625 9.219l4.122 3.299 4.405-7.048 1.696 1.06-5 8-1.473.251-4.148-3.319-3.395 5.092-1.664-1.109 4-6 1.457-.226Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconChartLine[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconChartNumber: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M5 9H3V7h2a2 2 0 0 1 2 2v8H5V9Zm5 0v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Zm3-6v6h2V9h-2Zm4 6a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconChartNumber[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconChartProgress: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M12.016 2A10 10 0 0 1 17 20.66l-1-1.732a8 8 0 1 0-8.022-.012l-1.004 1.729A10 10 0 0 1 12.016 2Zm2.57 5.586L16 9l-7 7-1.414-1.414 7-7ZM11 9.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm5 5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconChartProgress[iconSymbol] = true
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconDrinkBurger: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M11.555 2.832 9 4.535V6h4.084l-.322 4.006A5.09 5.09 0 0 1 13 10h3a5 5 0 0 1 4.974 4.483A2.494 2.494 0 0 1 21 18.496V20a2 2 0 0 1-2 2H3.202L1.916 6H7V3.465l3.445-2.297 1.11 1.664ZM5.048 20H8v-1.504a2.493 2.493 0 0 1 .025-4.013 5.003 5.003 0 0 1 2.685-3.928L10.916 8H4.084l.964 12ZM10 19v1h9v-1h-9Zm-.5-3a.5.5 0 0 0 0 1h10a.5.5 0 0 0 0-1h-10Zm3.5-4a2.998 2.998 0 0 0-2.826 2h8.652A2.998 2.998 0 0 0 16 12h-3Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
}
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
IconDrinkBurger[iconSymbol] = true
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconHeartMusicNote: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
fillRule='evenodd'
|
|
29
|
+
d='M13 6.647c0-.99-.722-1.712-1.678-1.642C10.15 5.09 9.5 6.052 9.5 6.647h-2l-.008-.116c-.076-.597-.714-1.446-1.814-1.526C4.722 4.935 4 5.657 4 6.647c0 .712.5 1.585 1.541 2.628.847.849 1.905 1.669 2.959 2.47 1.057-.8 2.114-1.606 2.96-2.45C12.498 8.266 13 7.393 13 6.648Zm2 0c0 1.595-1.025 2.97-2.128 4.067-1.13 1.123-2.575 2.178-3.768 3.083H7.896c-1.2-.91-2.64-1.977-3.77-3.109C3.029 9.59 2 8.214 2 6.648 2 4.641 3.567 2.845 5.822 3.01A4.06 4.06 0 0 1 8.5 4.28a4.06 4.06 0 0 1 2.678-1.27C13.433 2.846 15 4.642 15 6.647Zm5.122 3.686a3 3 0 0 1 .183 4.41l-.464.464-1.414-1.414.464-.464a1 1 0 0 0-.062-1.47L18 11.157V18a3 3 0 1 1-2-2.826V9l1.646-.764 2.476 2.097ZM15 17a1 1 0 1 0 0 2 1 1 0 0 0 0-2Z'
|
|
30
|
+
clipRule='evenodd'
|
|
31
|
+
/>
|
|
32
|
+
)
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
IconHeartMusicNote[iconSymbol] = true
|
package/react/index.ts
CHANGED
|
@@ -2,6 +2,7 @@ export { IconActivity } from './activity'
|
|
|
2
2
|
export { IconAddLineBottom } from './add-line-bottom'
|
|
3
3
|
export { IconAddLineLeft } from './add-line-left'
|
|
4
4
|
export { IconAddLineRight } from './add-line-right'
|
|
5
|
+
export { IconAiCursor } from './ai-cursor'
|
|
5
6
|
export { IconAiText } from './ai-text'
|
|
6
7
|
export { IconAlignBottomGroup } from './align-bottom-group'
|
|
7
8
|
export { IconAlignBottom } from './align-bottom'
|
|
@@ -22,6 +23,7 @@ export { IconArrowBendUpRight } from './arrow-bend-up-right'
|
|
|
22
23
|
export { IconArrowBoxLeft } from './arrow-box-left'
|
|
23
24
|
export { IconArrowBoxOut } from './arrow-box-out'
|
|
24
25
|
export { IconArrowClockwiseDownRight } from './arrow-clockwise-down-right'
|
|
26
|
+
export { IconArrowClockwiseIntoRectangle } from './arrow-clockwise-into-rectangle'
|
|
25
27
|
export { IconArrowClockwiseUpLeft } from './arrow-clockwise-up-left'
|
|
26
28
|
export { IconArrowCounterClockwiseDownLeft } from './arrow-counter-clockwise-down-left'
|
|
27
29
|
export { IconArrowCounterClockwiseUpRight } from './arrow-counter-clockwise-up-right'
|
|
@@ -65,6 +67,7 @@ export { IconAt } from './at'
|
|
|
65
67
|
export { IconAttachment } from './attachment'
|
|
66
68
|
export { IconBadge } from './badge'
|
|
67
69
|
export { IconBarrel } from './barrel'
|
|
70
|
+
export { IconBear } from './bear'
|
|
68
71
|
export { IconBellSlash } from './bell-slash'
|
|
69
72
|
export { IconBellTilt } from './bell-tilt'
|
|
70
73
|
export { IconBell } from './bell'
|
|
@@ -87,12 +90,16 @@ export { IconCalendarStart } from './calendar-start'
|
|
|
87
90
|
export { IconCamera } from './camera'
|
|
88
91
|
export { IconCaptionAlong } from './caption-along'
|
|
89
92
|
export { IconCaptionHorizontal } from './caption-horizontal'
|
|
93
|
+
export { IconCar } from './car'
|
|
90
94
|
export { IconCardCircles } from './card-circles'
|
|
91
95
|
export { IconCardNumberThree } from './card-number-three'
|
|
92
96
|
export { IconCard } from './card'
|
|
93
97
|
export { IconCardsPoker } from './cards-poker'
|
|
94
98
|
export { IconChartBarYSimple } from './chart-bar-y-simple'
|
|
95
99
|
export { IconChartBarY } from './chart-bar-y'
|
|
100
|
+
export { IconChartLine } from './chart-line'
|
|
101
|
+
export { IconChartNumber } from './chart-number'
|
|
102
|
+
export { IconChartProgress } from './chart-progress'
|
|
96
103
|
export { IconChatCheck } from './chat-check'
|
|
97
104
|
export { IconChatCross } from './chat-cross'
|
|
98
105
|
export { IconChatDashesLinesTwo } from './chat-dashes-lines-two'
|
|
@@ -194,6 +201,7 @@ export { IconDotsThreeVertical } from './dots-three-vertical'
|
|
|
194
201
|
export { IconDotsThree } from './dots-three'
|
|
195
202
|
export { IconDotsTwo } from './dots-two'
|
|
196
203
|
export { IconDownload } from './download'
|
|
204
|
+
export { IconDrinkBurger } from './drink-burger'
|
|
197
205
|
export { IconEnvelope } from './envelope'
|
|
198
206
|
export { IconEraser } from './eraser'
|
|
199
207
|
export { IconExclamationMarkOctagon } from './exclamation-mark-octagon'
|
|
@@ -238,6 +246,7 @@ export { IconHand } from './hand'
|
|
|
238
246
|
export { IconHeadphones } from './headphones'
|
|
239
247
|
export { IconHeadsetPerson } from './headset-person'
|
|
240
248
|
export { IconHeartFilled } from './heart-filled'
|
|
249
|
+
export { IconHeartMusicNote } from './heart-music-note'
|
|
241
250
|
export { IconHeart } from './heart'
|
|
242
251
|
export { IconHexagon } from './hexagon'
|
|
243
252
|
export { IconHighlighterColorSelection } from './highlighter-color-selection'
|
|
@@ -323,6 +332,7 @@ export { IconNotepad } from './notepad'
|
|
|
323
332
|
export { IconNumber } from './number'
|
|
324
333
|
export { IconOctagon } from './octagon'
|
|
325
334
|
export { IconOffice } from './office'
|
|
335
|
+
export { IconOrbitDouble } from './orbit-double'
|
|
326
336
|
export { IconOrgChart } from './org-chart'
|
|
327
337
|
export { IconOrientationHorizontal } from './orientation-horizontal'
|
|
328
338
|
export { IconOrientationVertical } from './orientation-vertical'
|
|
@@ -463,6 +473,7 @@ export { IconSquareBracketsAngleSlash } from './square-brackets-angle-slash'
|
|
|
463
473
|
export { IconSquareCirclesTwo } from './square-circles-two'
|
|
464
474
|
export { IconSquareFrame2LinesCircle } from './square-frame-2-lines-circle'
|
|
465
475
|
export { IconSquareLineSquareDashed } from './square-line-square-dashed'
|
|
476
|
+
export { IconSquarePencil } from './square-pencil'
|
|
466
477
|
export { IconSquareRounded } from './square-rounded'
|
|
467
478
|
export { IconSquareStarScribble } from './square-star-scribble'
|
|
468
479
|
export { IconSquareTriangleCirclePlus } from './square-triangle-circle-plus'
|
|
@@ -503,6 +514,7 @@ export { IconTable } from './table'
|
|
|
503
514
|
export { IconTablet } from './tablet'
|
|
504
515
|
export { IconTag } from './tag'
|
|
505
516
|
export { IconTasks } from './tasks'
|
|
517
|
+
export { IconTennisBall } from './tennis-ball'
|
|
506
518
|
export { IconTextAColorSelection } from './text-a-color-selection'
|
|
507
519
|
export { IconTextAHorizontal } from './text-a-horizontal'
|
|
508
520
|
export { IconTextAUnderline } from './text-a-underline'
|
|
@@ -25,9 +25,7 @@ export const IconMagnifyingGlassMinus: IconComponentType = forwardRef(
|
|
|
25
25
|
},
|
|
26
26
|
<path
|
|
27
27
|
fill='currentColor'
|
|
28
|
-
|
|
29
|
-
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'
|
|
30
|
-
clipRule='evenodd'
|
|
28
|
+
d='M20 4v2h-8V4h8ZM3 10a7 7 0 0 1 7-7v2a5 5 0 1 0 4.93 5.835l1.973.33a6.97 6.97 0 0 1-1.297 3.026l5.101 5.102-1.414 1.414-5.103-5.103A7 7 0 0 1 3 10Z'
|
|
31
29
|
/>
|
|
32
30
|
)
|
|
33
31
|
}
|
|
@@ -25,7 +25,7 @@ export const IconMagnifyingGlassPlus: IconComponentType = forwardRef(
|
|
|
25
25
|
},
|
|
26
26
|
<path
|
|
27
27
|
fill='currentColor'
|
|
28
|
-
d='M3
|
|
28
|
+
d='M3 10a7 7 0 0 1 7-7v2a5 5 0 1 0 4.93 5.835l1.973.33a6.97 6.97 0 0 1-1.297 3.026l5.101 5.102-1.414 1.414-5.103-5.103A7 7 0 0 1 3 10Zm14-9v3h3v2h-3v3h-2V6h-3V4h3V1h2Z'
|
|
29
29
|
/>
|
|
30
30
|
)
|
|
31
31
|
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DO NOT MODIFY THIS FILE.
|
|
3
|
+
* This file was generated by sync icons utility.
|
|
4
|
+
*/
|
|
5
|
+
import React, { forwardRef, createElement } from 'react'
|
|
6
|
+
import { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
|
|
8
|
+
|
|
9
|
+
import { StyledIcon } from '../src/icon'
|
|
10
|
+
import type { IconComponentType } from '../src/icon'
|
|
11
|
+
|
|
12
|
+
export const IconOrbitDouble: IconComponentType = forwardRef(
|
|
13
|
+
({ size = 'medium', ...props }, forwardRef) => {
|
|
14
|
+
const [debug] = useLocalStorage('DEBUG_ICON', false)
|
|
15
|
+
return createElement(
|
|
16
|
+
StyledIcon,
|
|
17
|
+
{
|
|
18
|
+
...props,
|
|
19
|
+
debug,
|
|
20
|
+
'aria-hidden': true,
|
|
21
|
+
size,
|
|
22
|
+
viewBox: '0 0 24 24',
|
|
23
|
+
fill: 'none',
|
|
24
|
+
ref: forwardRef,
|
|
25
|
+
},
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
fillRule='evenodd'
|
|
29
|
+
d='M12.02 4.57c3.135-1.695 6.172-1.934 7.78-.327 1.606 1.607 1.365 4.642-.33 7.777 1.696 3.136 1.936 6.172.329 7.779-1.608 1.607-4.644 1.367-7.779-.328-3.135 1.694-6.17 1.934-7.777.328-1.607-1.607-1.368-4.644.327-7.779-1.695-3.134-1.934-6.17-.327-7.777 1.607-1.607 4.642-1.368 7.777.327ZM5.832 14a9.91 9.91 0 0 0-.393 1.085c-.552 1.878-.193 2.888.218 3.3.411.411 1.42.77 3.3.217.35-.103.712-.235 1.084-.393a19.724 19.724 0 0 1-2.263-1.946 19.5 19.5 0 0 1-1.946-2.262Zm12.377 0a19.707 19.707 0 0 1-1.946 2.263c-.729.73-1.49 1.379-2.262 1.946.372.158.734.29 1.084.393 1.879.553 2.888.194 3.3-.218.41-.41.77-1.42.217-3.3a9.914 9.914 0 0 0-.393-1.083ZM12.02 6.895a17.245 17.245 0 0 0-2.827 2.298 17.25 17.25 0 0 0-2.299 2.828c.61.947 1.377 1.909 2.298 2.83.92.92 1.882 1.686 2.828 2.296a17.236 17.236 0 0 0 2.83-2.297c.92-.92 1.686-1.883 2.296-2.829a17.243 17.243 0 0 0-2.297-2.828 17.238 17.238 0 0 0-2.829-2.298ZM8.957 5.44c-1.88-.552-2.889-.193-3.3.218-.412.411-.77 1.42-.218 3.3.103.35.234.712.393 1.084a19.72 19.72 0 0 1 1.946-2.263c.73-.73 1.491-1.38 2.263-1.946a9.898 9.898 0 0 0-1.084-.393Zm9.428.218c-.411-.411-1.421-.77-3.3-.218A9.9 9.9 0 0 0 14 5.832a19.714 19.714 0 0 1 2.262 1.946 19.73 19.73 0 0 1 1.946 2.262c.158-.372.29-.734.393-1.083.553-1.879.195-2.888-.217-3.3Z'
|
|
30
|
+
clipRule='evenodd'
|
|
31
|
+
/>
|
|
32
|
+
)
|
|
33
|
+
}
|
|
34
|
+
)
|
|
35
|
+
|
|
36
|
+
IconOrbitDouble[iconSymbol] = true
|
package/react/proto-radio.tsx
CHANGED
|
@@ -25,7 +25,7 @@ export const IconProtoRadio: IconComponentType = forwardRef(
|
|
|
25
25
|
},
|
|
26
26
|
<path
|
|
27
27
|
fill='currentColor'
|
|
28
|
-
d='
|
|
28
|
+
d='M20 12a8 8 0 1 0-8 8v2C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10v-2a8 8 0 0 0 8-8Zm-4 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z'
|
|
29
29
|
/>
|
|
30
30
|
)
|
|
31
31
|
}
|