@mirohq/design-system-icons 1.11.1 → 1.13.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.
Files changed (44) hide show
  1. package/dist/main.js +408 -5
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +394 -6
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +31 -1
  6. package/package.json +2 -2
  7. package/react/arrow-clockwise-into-rectangle.tsx +34 -0
  8. package/react/bear.tsx +34 -0
  9. package/react/box-captions-filled.tsx +36 -0
  10. package/react/car.tsx +36 -0
  11. package/react/chat-cross.tsx +34 -0
  12. package/react/drink-burger.tsx +34 -0
  13. package/react/heart-music-note.tsx +36 -0
  14. package/react/horizontal-blocks.tsx +34 -0
  15. package/react/index.ts +15 -0
  16. package/react/line-vertical.tsx +31 -0
  17. package/react/magnifying-glass-minus.tsx +34 -0
  18. package/react/magnifying-glass-plus.tsx +1 -1
  19. package/react/proto-checkbox.tsx +1 -1
  20. package/react/proto-radio.tsx +1 -3
  21. package/react/rectangle-portrait-square-bottom-right.tsx +33 -0
  22. package/react/rectangles-layout.tsx +34 -0
  23. package/react/split-horizontal.tsx +34 -0
  24. package/react/tennis-ball.tsx +36 -0
  25. package/react/vertical-blocks.tsx +34 -0
  26. package/svg/24/arrow-clockwise-into-rectangle.svg +2 -0
  27. package/svg/24/bear.svg +2 -0
  28. package/svg/24/box-captions-filled.svg +2 -0
  29. package/svg/24/car.svg +2 -0
  30. package/svg/24/chat-cross.svg +2 -0
  31. package/svg/24/drink-burger.svg +2 -0
  32. package/svg/24/heart-music-note.svg +2 -0
  33. package/svg/24/horizontal-blocks.svg +2 -0
  34. package/svg/24/line-vertical.svg +2 -0
  35. package/svg/24/magnifying-glass-minus.svg +2 -0
  36. package/svg/24/magnifying-glass-plus.svg +1 -1
  37. package/svg/24/proto-checkbox.svg +1 -1
  38. package/svg/24/proto-radio.svg +1 -1
  39. package/svg/24/rectangle-portrait-square-bottom-right.svg +2 -0
  40. package/svg/24/rectangles-layout.svg +2 -0
  41. package/svg/24/split-horizontal.svg +2 -0
  42. package/svg/24/tennis-ball.svg +2 -0
  43. package/svg/24/vertical-blocks.svg +2 -0
  44. package/svg/meta.json +160 -19
package/dist/types.d.ts CHANGED
@@ -82,6 +82,8 @@ declare const IconArrowBoxOut: IconComponentType;
82
82
 
83
83
  declare const IconArrowClockwiseDownRight: IconComponentType;
84
84
 
85
+ declare const IconArrowClockwiseIntoRectangle: IconComponentType;
86
+
85
87
  declare const IconArrowClockwiseUpLeft: IconComponentType;
86
88
 
87
89
  declare const IconArrowCounterClockwiseDownLeft: IconComponentType;
@@ -168,6 +170,8 @@ declare const IconBadge: IconComponentType;
168
170
 
169
171
  declare const IconBarrel: IconComponentType;
170
172
 
173
+ declare const IconBear: IconComponentType;
174
+
171
175
  declare const IconBellSlash: IconComponentType;
172
176
 
173
177
  declare const IconBellTilt: IconComponentType;
@@ -180,6 +184,8 @@ declare const IconBookOpenInfo: IconComponentType;
180
184
 
181
185
  declare const IconBookmark: IconComponentType;
182
186
 
187
+ declare const IconBoxCaptionsFilled: IconComponentType;
188
+
183
189
  declare const IconBoxCaptions: IconComponentType;
184
190
 
185
191
  declare const IconBracketClose: IconComponentType;
@@ -210,6 +216,8 @@ declare const IconCaptionAlong: IconComponentType;
210
216
 
211
217
  declare const IconCaptionHorizontal: IconComponentType;
212
218
 
219
+ declare const IconCar: IconComponentType;
220
+
213
221
  declare const IconCardCircles: IconComponentType;
214
222
 
215
223
  declare const IconCardNumberThree: IconComponentType;
@@ -224,6 +232,8 @@ declare const IconChartBarY: IconComponentType;
224
232
 
225
233
  declare const IconChatCheck: IconComponentType;
226
234
 
235
+ declare const IconChatCross: IconComponentType;
236
+
227
237
  declare const IconChatDashesLinesTwo: IconComponentType;
228
238
 
229
239
  declare const IconChatLinesCross: IconComponentType;
@@ -422,6 +432,8 @@ declare const IconDotsTwo: IconComponentType;
422
432
 
423
433
  declare const IconDownload: IconComponentType;
424
434
 
435
+ declare const IconDrinkBurger: IconComponentType;
436
+
425
437
  declare const IconEnvelope: IconComponentType;
426
438
 
427
439
  declare const IconEraser: IconComponentType;
@@ -510,6 +522,8 @@ declare const IconHeadsetPerson: IconComponentType;
510
522
 
511
523
  declare const IconHeartFilled: IconComponentType;
512
524
 
525
+ declare const IconHeartMusicNote: IconComponentType;
526
+
513
527
  declare const IconHeart: IconComponentType;
514
528
 
515
529
  declare const IconHexagon: IconComponentType;
@@ -520,6 +534,8 @@ declare const IconHighlighterUnderline: IconComponentType;
520
534
 
521
535
  declare const IconHighlighter: IconComponentType;
522
536
 
537
+ declare const IconHorizontalBlocks: IconComponentType;
538
+
523
539
  declare const IconHouse: IconComponentType;
524
540
 
525
541
  declare const IconImage: IconComponentType;
@@ -568,6 +584,8 @@ declare const IconLineStraight: IconComponentType;
568
584
 
569
585
  declare const IconLineTwoDiagonalTopRightDouble: IconComponentType;
570
586
 
587
+ declare const IconLineVertical: IconComponentType;
588
+
571
589
  declare const IconLinesThreeHorizontalLineVerticalCenter: IconComponentType;
572
590
 
573
591
  declare const IconLinesThreeHorizontal: IconComponentType;
@@ -596,6 +614,8 @@ declare const IconMagnet: IconComponentType;
596
614
 
597
615
  declare const IconMagnifyingGlassLightning: IconComponentType;
598
616
 
617
+ declare const IconMagnifyingGlassMinus: IconComponentType;
618
+
599
619
  declare const IconMagnifyingGlassPlus: IconComponentType;
600
620
 
601
621
  declare const IconMagnifyingGlass: IconComponentType;
@@ -812,6 +832,8 @@ declare const IconRectanglePortraitDash: IconComponentType;
812
832
 
813
833
  declare const IconRectanglePortraitFilled: IconComponentType;
814
834
 
835
+ declare const IconRectanglePortraitSquareBottomRight: IconComponentType;
836
+
815
837
  declare const IconRectanglePortraitSquareTopLeft: IconComponentType;
816
838
 
817
839
  declare const IconRectanglePortrait: IconComponentType;
@@ -820,6 +842,8 @@ declare const IconRectangleTick: IconComponentType;
820
842
 
821
843
  declare const IconRectangleTriangleBottomCenter: IconComponentType;
822
844
 
845
+ declare const IconRectanglesLayout: IconComponentType;
846
+
823
847
  declare const IconRectanglesSquares: IconComponentType;
824
848
 
825
849
  declare const IconRectanglesThreeAligned: IconComponentType;
@@ -936,6 +960,8 @@ declare const IconSpeakerHigh: IconComponentType;
936
960
 
937
961
  declare const IconSpinner: IconComponentType;
938
962
 
963
+ declare const IconSplitHorizontal: IconComponentType;
964
+
939
965
  declare const IconSplitVertical: IconComponentType;
940
966
 
941
967
  declare const IconSquareArrowIn: IconComponentType;
@@ -1028,6 +1054,8 @@ declare const IconTag: IconComponentType;
1028
1054
 
1029
1055
  declare const IconTasks: IconComponentType;
1030
1056
 
1057
+ declare const IconTennisBall: IconComponentType;
1058
+
1031
1059
  declare const IconTextAColorSelection: IconComponentType;
1032
1060
 
1033
1061
  declare const IconTextAHorizontal: IconComponentType;
@@ -1142,6 +1170,8 @@ declare const IconUsersThree: IconComponentType;
1142
1170
 
1143
1171
  declare const IconUsers: IconComponentType;
1144
1172
 
1173
+ declare const IconVerticalBlocks: IconComponentType;
1174
+
1145
1175
  declare const IconVideoCameraDot: IconComponentType;
1146
1176
 
1147
1177
  declare const IconVideoCameraLinesDot: IconComponentType;
@@ -1174,4 +1204,4 @@ declare const IconWifiExclamation: IconComponentType;
1174
1204
 
1175
1205
  declare const IconWifi: IconComponentType;
1176
1206
 
1177
- export { IconActivity, IconAddLineBottom, IconAddLineLeft, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignBottomGroup, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignMiddle, IconAlignRight, IconAlignTop, IconAlignTopGroup, IconAlignmentScale, IconAltText, IconAltTextUnderline, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxLeft, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowLeftAwayLine, IconArrowLeftRightDotted, IconArrowLeftTowardLine, IconArrowRight, IconArrowRightAwayLine, IconArrowRightTowardLine, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsCounterclockwiseRectangleTilt, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsHorizontalLinesTopBottomIn, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconArticleEmpty, IconAt, IconAttachment, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketClose, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketOpen, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckBoxLines, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleDashed, IconCircleFullCheck, IconCircleHalfFill, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCircleTarget, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, 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, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconInsights, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicLinesDot, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNesting, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusCross, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, 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, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialAws, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialMonday, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwapHorizontal, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRight, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserMic, IconUserMicSlash, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraDot, IconVideoCameraLines, IconVideoCameraLinesDot, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconVideoPlayer, IconViewCenter, IconViewSideLeft, IconViewSideRight, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
1207
+ 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, 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, 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, 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, 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.11.1",
3
+ "version": "1.13.0",
4
4
  "description": "",
5
5
  "author": "Miro",
6
6
  "source": "src/index.ts",
@@ -31,9 +31,9 @@
31
31
  "react": "^16.14 || ^17 || ^18"
32
32
  },
33
33
  "dependencies": {
34
+ "@mirohq/design-system-stitches": "^3.0.1",
34
35
  "@mirohq/design-system-base-icon": "^1.0.0",
35
36
  "@mirohq/design-system-primitive": "^2.0.0",
36
- "@mirohq/design-system-stitches": "^3.0.1",
37
37
  "@mirohq/design-system-use-local-storage": "^1.0.0",
38
38
  "@mirohq/design-system-utils": "^1.1.0"
39
39
  },
@@ -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
@@ -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 IconBoxCaptionsFilled: 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='M19 4a3 3 0 0 1 3 3v10a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h14ZM9.112 9.336c-.482 0-.943.097-1.348.287a2.662 2.662 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.883 3.883 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.656-2.097h-1.416a1.016 1.016 0 0 1-.501.695 1.263 1.263 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104.133-.039.276-.06.422-.06a1.469 1.469 0 0 1 .45.063c.412.122.696.416.75.818H11.8c-.152-1.272-1.208-2.096-2.688-2.096Zm5.961 0c-.482 0-.943.097-1.348.287a2.66 2.66 0 0 0-.458.273c-.605.45-1.01 1.166-1.054 2.131a3.929 3.929 0 0 0 0 .346c.077 1.76 1.334 2.692 2.86 2.692 1.504 0 2.552-.825 2.655-2.097h-1.416a1.016 1.016 0 0 1-.5.695 1.258 1.258 0 0 1-.188.089 1.584 1.584 0 0 1-.705.09 1.47 1.47 0 0 1-.28-.053c-.58-.17-.998-.705-.998-1.589 0-.748.303-1.247.747-1.485.08-.043.166-.078.255-.104a1.5 1.5 0 0 1 .422-.06 1.467 1.467 0 0 1 .45.063c.412.122.695.416.75.818h1.496c-.152-1.272-1.208-2.096-2.688-2.096Z'
30
+ clipRule='evenodd'
31
+ />
32
+ )
33
+ }
34
+ )
35
+
36
+ IconBoxCaptionsFilled[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 IconChatCross: 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='M21.707 2.707 19.414 5l2.293 2.293-1.414 1.414L18 6.414l-2.293 2.293-1.414-1.414L16.586 5l-2.293-2.293 1.414-1.414L18 3.586l2.293-2.293 1.414 1.414ZM2 12c0-5.147 3.889-9.386 8.89-9.94l.22 1.99a8.002 8.002 0 0 0-5.926 12.14l.103.821-.764 2.456 2.431-.77.83.104a7.966 7.966 0 0 0 4.216 1.2 8.002 8.002 0 0 0 7.951-7.111l1.988.22C21.387 18.11 17.148 22 12 22a9.973 9.973 0 0 1-4.865-1.263l-3.832 1.216-1.258-1.25 1.201-3.868A9.958 9.958 0 0 1 2 12Z'
29
+ />
30
+ )
31
+ }
32
+ )
33
+
34
+ IconChatCross[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
@@ -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 IconHorizontalBlocks: 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 15v4h10v-4H5Zm12 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 19v-4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4ZM5 5v4h14V5H5Zm16 4a2 2 0 0 1-2 2H5a2 2 0 0 1-1.99-1.796L3 9V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v4Z'
29
+ />
30
+ )
31
+ }
32
+ )
33
+
34
+ IconHorizontalBlocks[iconSymbol] = true
package/react/index.ts CHANGED
@@ -22,6 +22,7 @@ export { IconArrowBendUpRight } from './arrow-bend-up-right'
22
22
  export { IconArrowBoxLeft } from './arrow-box-left'
23
23
  export { IconArrowBoxOut } from './arrow-box-out'
24
24
  export { IconArrowClockwiseDownRight } from './arrow-clockwise-down-right'
25
+ export { IconArrowClockwiseIntoRectangle } from './arrow-clockwise-into-rectangle'
25
26
  export { IconArrowClockwiseUpLeft } from './arrow-clockwise-up-left'
26
27
  export { IconArrowCounterClockwiseDownLeft } from './arrow-counter-clockwise-down-left'
27
28
  export { IconArrowCounterClockwiseUpRight } from './arrow-counter-clockwise-up-right'
@@ -65,12 +66,14 @@ export { IconAt } from './at'
65
66
  export { IconAttachment } from './attachment'
66
67
  export { IconBadge } from './badge'
67
68
  export { IconBarrel } from './barrel'
69
+ export { IconBear } from './bear'
68
70
  export { IconBellSlash } from './bell-slash'
69
71
  export { IconBellTilt } from './bell-tilt'
70
72
  export { IconBell } from './bell'
71
73
  export { IconBoard } from './board'
72
74
  export { IconBookOpenInfo } from './book-open-info'
73
75
  export { IconBookmark } from './bookmark'
76
+ export { IconBoxCaptionsFilled } from './box-captions-filled'
74
77
  export { IconBoxCaptions } from './box-captions'
75
78
  export { IconBracketClose } from './bracket-close'
76
79
  export { IconBracketCurlyLeft } from './bracket-curly-left'
@@ -86,6 +89,7 @@ export { IconCalendarStart } from './calendar-start'
86
89
  export { IconCamera } from './camera'
87
90
  export { IconCaptionAlong } from './caption-along'
88
91
  export { IconCaptionHorizontal } from './caption-horizontal'
92
+ export { IconCar } from './car'
89
93
  export { IconCardCircles } from './card-circles'
90
94
  export { IconCardNumberThree } from './card-number-three'
91
95
  export { IconCard } from './card'
@@ -93,6 +97,7 @@ export { IconCardsPoker } from './cards-poker'
93
97
  export { IconChartBarYSimple } from './chart-bar-y-simple'
94
98
  export { IconChartBarY } from './chart-bar-y'
95
99
  export { IconChatCheck } from './chat-check'
100
+ export { IconChatCross } from './chat-cross'
96
101
  export { IconChatDashesLinesTwo } from './chat-dashes-lines-two'
97
102
  export { IconChatLinesCross } from './chat-lines-cross'
98
103
  export { IconChatLinesDot } from './chat-lines-dot'
@@ -192,6 +197,7 @@ export { IconDotsThreeVertical } from './dots-three-vertical'
192
197
  export { IconDotsThree } from './dots-three'
193
198
  export { IconDotsTwo } from './dots-two'
194
199
  export { IconDownload } from './download'
200
+ export { IconDrinkBurger } from './drink-burger'
195
201
  export { IconEnvelope } from './envelope'
196
202
  export { IconEraser } from './eraser'
197
203
  export { IconExclamationMarkOctagon } from './exclamation-mark-octagon'
@@ -236,11 +242,13 @@ export { IconHand } from './hand'
236
242
  export { IconHeadphones } from './headphones'
237
243
  export { IconHeadsetPerson } from './headset-person'
238
244
  export { IconHeartFilled } from './heart-filled'
245
+ export { IconHeartMusicNote } from './heart-music-note'
239
246
  export { IconHeart } from './heart'
240
247
  export { IconHexagon } from './hexagon'
241
248
  export { IconHighlighterColorSelection } from './highlighter-color-selection'
242
249
  export { IconHighlighterUnderline } from './highlighter-underline'
243
250
  export { IconHighlighter } from './highlighter'
251
+ export { IconHorizontalBlocks } from './horizontal-blocks'
244
252
  export { IconHouse } from './house'
245
253
  export { IconImage } from './image'
246
254
  export { IconIndentLeft } from './indent-left'
@@ -265,6 +273,7 @@ export { IconLineHorizontal } from './line-horizontal'
265
273
  export { IconLineOrthogonal } from './line-orthogonal'
266
274
  export { IconLineStraight } from './line-straight'
267
275
  export { IconLineTwoDiagonalTopRightDouble } from './line-two-diagonal-top-right-double'
276
+ export { IconLineVertical } from './line-vertical'
268
277
  export { IconLinesThreeHorizontalLineVerticalCenter } from './lines-three-horizontal-line-vertical-center'
269
278
  export { IconLinesThreeHorizontal } from './lines-three-horizontal'
270
279
  export { IconLinesThreeVertical } from './lines-three-vertical'
@@ -279,6 +288,7 @@ export { IconLogin } from './login'
279
288
  export { IconLogout } from './logout'
280
289
  export { IconMagnet } from './magnet'
281
290
  export { IconMagnifyingGlassLightning } from './magnifying-glass-lightning'
291
+ export { IconMagnifyingGlassMinus } from './magnifying-glass-minus'
282
292
  export { IconMagnifyingGlassPlus } from './magnifying-glass-plus'
283
293
  export { IconMagnifyingGlass } from './magnifying-glass'
284
294
  export { IconMap } from './map'
@@ -387,10 +397,12 @@ export { IconRectanglePortraitDashSquareTopCenter } from './rectangle-portrait-d
387
397
  export { IconRectanglePortraitDashSquareTopLeft } from './rectangle-portrait-dash-square-top-left'
388
398
  export { IconRectanglePortraitDash } from './rectangle-portrait-dash'
389
399
  export { IconRectanglePortraitFilled } from './rectangle-portrait-filled'
400
+ export { IconRectanglePortraitSquareBottomRight } from './rectangle-portrait-square-bottom-right'
390
401
  export { IconRectanglePortraitSquareTopLeft } from './rectangle-portrait-square-top-left'
391
402
  export { IconRectanglePortrait } from './rectangle-portrait'
392
403
  export { IconRectangleTick } from './rectangle-tick'
393
404
  export { IconRectangleTriangleBottomCenter } from './rectangle-triangle-bottom-center'
405
+ export { IconRectanglesLayout } from './rectangles-layout'
394
406
  export { IconRectanglesSquares } from './rectangles-squares'
395
407
  export { IconRectanglesThreeAligned } from './rectangles-three-aligned'
396
408
  export { IconRectanglesThreeFree } from './rectangles-three-free'
@@ -449,6 +461,7 @@ export { IconSparks } from './sparks'
449
461
  export { IconSpeakerCross } from './speaker-cross'
450
462
  export { IconSpeakerHigh } from './speaker-high'
451
463
  export { IconSpinner } from './spinner'
464
+ export { IconSplitHorizontal } from './split-horizontal'
452
465
  export { IconSplitVertical } from './split-vertical'
453
466
  export { IconSquareArrowIn } from './square-arrow-in'
454
467
  export { IconSquareBracketsAngleSlash } from './square-brackets-angle-slash'
@@ -495,6 +508,7 @@ export { IconTable } from './table'
495
508
  export { IconTablet } from './tablet'
496
509
  export { IconTag } from './tag'
497
510
  export { IconTasks } from './tasks'
511
+ export { IconTennisBall } from './tennis-ball'
498
512
  export { IconTextAColorSelection } from './text-a-color-selection'
499
513
  export { IconTextAHorizontal } from './text-a-horizontal'
500
514
  export { IconTextAUnderline } from './text-a-underline'
@@ -552,6 +566,7 @@ export { IconUserTickDown } from './user-tick-down'
552
566
  export { IconUser } from './user'
553
567
  export { IconUsersThree } from './users-three'
554
568
  export { IconUsers } from './users'
569
+ export { IconVerticalBlocks } from './vertical-blocks'
555
570
  export { IconVideoCameraDot } from './video-camera-dot'
556
571
  export { IconVideoCameraLinesDot } from './video-camera-lines-dot'
557
572
  export { IconVideoCameraLines } from './video-camera-lines'
@@ -0,0 +1,31 @@
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 IconLineVertical: 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 fill='currentColor' d='M14 20h-2V4h2v16Z' />
27
+ )
28
+ }
29
+ )
30
+
31
+ IconLineVertical[iconSymbol] = true