@mirohq/design-system-icons 1.2.0 → 1.4.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 (39) hide show
  1. package/dist/main.js +260 -50
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +251 -47
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +18 -6
  6. package/package.json +2 -2
  7. package/react/align-bottom.tsx +1 -5
  8. package/react/align-top.tsx +1 -5
  9. package/react/arrow-box-left.tsx +2 -2
  10. package/react/{diagramming-format.tsx → diagramming-shapes.tsx} +2 -2
  11. package/react/index.ts +10 -4
  12. package/react/{video-camera-simple-circle.tsx → mic-lines-dot.tsx} +4 -4
  13. package/react/social-aws.tsx +48 -0
  14. package/react/squares-two-overlap.tsx +4 -2
  15. package/react/{microphone-document.tsx → user-arrow-right.tsx} +6 -8
  16. package/react/user-mic-slash.tsx +40 -0
  17. package/react/user-mic.tsx +44 -0
  18. package/react/{video-camera-simple-mic.tsx → video-camera-dot.tsx} +4 -8
  19. package/react/video-camera-lines-dot.tsx +38 -0
  20. package/react/video-camera-lines.tsx +40 -0
  21. package/react/view-side-right.tsx +39 -0
  22. package/svg/24/align-bottom.svg +1 -1
  23. package/svg/24/align-top.svg +1 -1
  24. package/svg/24/arrow-box-left.svg +1 -1
  25. package/svg/24/mic-lines-dot.svg +2 -0
  26. package/svg/24/social-aws.svg +2 -0
  27. package/svg/24/squares-two-overlap.svg +1 -1
  28. package/svg/24/user-arrow-right.svg +2 -0
  29. package/svg/24/user-mic-slash.svg +2 -0
  30. package/svg/24/user-mic.svg +2 -0
  31. package/svg/24/video-camera-dot.svg +2 -0
  32. package/svg/24/video-camera-lines-dot.svg +2 -0
  33. package/svg/24/video-camera-lines.svg +2 -0
  34. package/svg/24/view-side-right.svg +2 -0
  35. package/svg/meta.json +34 -28
  36. package/svg/24/microphone-document.svg +0 -2
  37. package/svg/24/video-camera-simple-circle.svg +0 -2
  38. package/svg/24/video-camera-simple-mic.svg +0 -2
  39. /package/svg/24/{diagramming-format.svg → diagramming-shapes.svg} +0 -0
package/dist/types.d.ts CHANGED
@@ -368,7 +368,7 @@ declare const IconDiagramCardTeam: IconComponentType;
368
368
 
369
369
  declare const IconDiagramCardUser: IconComponentType;
370
370
 
371
- declare const IconDiagrammingFormat: IconComponentType;
371
+ declare const IconDiagrammingShapes: IconComponentType;
372
372
 
373
373
  declare const IconDiagramming: IconComponentType;
374
374
 
@@ -576,7 +576,7 @@ declare const IconMegaphone: IconComponentType;
576
576
 
577
577
  declare const IconMermaid: IconComponentType;
578
578
 
579
- declare const IconMicrophoneDocument: IconComponentType;
579
+ declare const IconMicLinesDot: IconComponentType;
580
580
 
581
581
  declare const IconMicrophoneSlash: IconComponentType;
582
582
 
@@ -870,6 +870,8 @@ declare const IconSocialAdo: IconComponentType;
870
870
 
871
871
  declare const IconSocialAsana: IconComponentType;
872
872
 
873
+ declare const IconSocialAws: IconComponentType;
874
+
873
875
  declare const IconSocialDrawio: IconComponentType;
874
876
 
875
877
  declare const IconSocialFacebook: IconComponentType;
@@ -1078,6 +1080,8 @@ declare const IconUserAdd: IconComponentType;
1078
1080
 
1079
1081
  declare const IconUserArrowRightUp: IconComponentType;
1080
1082
 
1083
+ declare const IconUserArrowRight: IconComponentType;
1084
+
1081
1085
  declare const IconUserBackgroundBlur: IconComponentType;
1082
1086
 
1083
1087
  declare const IconUserCogPlus: IconComponentType;
@@ -1090,6 +1094,10 @@ declare const IconUserFilter: IconComponentType;
1090
1094
 
1091
1095
  declare const IconUserLoad: IconComponentType;
1092
1096
 
1097
+ declare const IconUserMicSlash: IconComponentType;
1098
+
1099
+ declare const IconUserMic: IconComponentType;
1100
+
1093
1101
  declare const IconUserNumberThree: IconComponentType;
1094
1102
 
1095
1103
  declare const IconUserPenDashesBottom: IconComponentType;
@@ -1104,11 +1112,13 @@ declare const IconUsersThree: IconComponentType;
1104
1112
 
1105
1113
  declare const IconUsers: IconComponentType;
1106
1114
 
1107
- declare const IconVideoCameraSimpleCircle: IconComponentType;
1115
+ declare const IconVideoCameraDot: IconComponentType;
1108
1116
 
1109
- declare const IconVideoCameraSimpleError: IconComponentType;
1117
+ declare const IconVideoCameraLinesDot: IconComponentType;
1118
+
1119
+ declare const IconVideoCameraLines: IconComponentType;
1110
1120
 
1111
- declare const IconVideoCameraSimpleMic: IconComponentType;
1121
+ declare const IconVideoCameraSimpleError: IconComponentType;
1112
1122
 
1113
1123
  declare const IconVideoCameraSimpleSlash: IconComponentType;
1114
1124
 
@@ -1120,6 +1130,8 @@ declare const IconViewCenter: IconComponentType;
1120
1130
 
1121
1131
  declare const IconViewSideLeft: IconComponentType;
1122
1132
 
1133
+ declare const IconViewSideRight: IconComponentType;
1134
+
1123
1135
  declare const IconWallet: IconComponentType;
1124
1136
 
1125
1137
  declare const IconWand: IconComponentType;
@@ -1130,4 +1142,4 @@ declare const IconWifiExclamation: IconComponentType;
1130
1142
 
1131
1143
  declare const IconWifi: IconComponentType;
1132
1144
 
1133
- export { IconActivity, IconAddLineBottom, 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, IconArrowLeftRightDotted, IconArrowRight, 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, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, 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, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, 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, IconMicrophone, IconMicrophoneDocument, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorArrowUp, IconMonitorEyeClosed, IconMonitorEyeOpen, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconNumber, IconOctagon, IconOffice, IconOrgChart, IconOrientationHorizontal, IconOrientationVertical, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenColorSelection, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPhoneFilled, IconPixelEraser, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, 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, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, 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, IconSwitch, IconTable, IconTableFormat, IconTablet, IconTag, IconTasks, IconTextAColorSelection, IconTextAHorizontal, IconTextAUnderline, IconTextAVertical, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextPosition, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleCircle, IconVideoCameraSimpleError, IconVideoCameraSimpleMic, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWand, IconWarning, IconWifi, IconWifiExclamation };
1145
+ export { IconActivity, IconAddLineBottom, 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, IconArrowLeftRightDotted, IconArrowRight, 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, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrowser, IconBrush, IconCalendarBlank, IconCalendarEnd, IconCalendarStart, IconCamera, IconCaptionAlong, IconCaptionHorizontal, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClusterAi, IconClusterColor, IconClusterSentiment, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconCompass, 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, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, 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, 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, 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, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesSquares, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconSelect, IconSentiment, IconShadow, IconShapes, IconShapesLines, IconShapesLinesStacked, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialAsana, 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, 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, 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.2.0",
3
+ "version": "1.4.0",
4
4
  "description": "",
5
5
  "author": "Miro",
6
6
  "source": "src/index.ts",
@@ -33,8 +33,8 @@
33
33
  "dependencies": {
34
34
  "@mirohq/design-system-base-icon": "^1.0.0",
35
35
  "@mirohq/design-system-stitches": "^3.0.0",
36
- "@mirohq/design-system-primitive": "^2.0.0",
37
36
  "@mirohq/design-system-use-local-storage": "^1.0.0",
37
+ "@mirohq/design-system-primitive": "^2.0.0",
38
38
  "@mirohq/design-system-utils": "^1.0.0"
39
39
  },
40
40
  "devDependencies": {
@@ -25,11 +25,7 @@ export const IconAlignBottom: IconComponentType = forwardRef(
25
25
  },
26
26
  <path
27
27
  fill='currentColor'
28
- d='M3 22v-2h18v2h-18ZM10.9998 16v-12h2v12h-2Z'
29
- />,
30
- <path
31
- fill='currentColor'
32
- d='m16.293 11.293-4.293 4.2929-4.293-4.2929-1.414 1.414 5 5h1.414l5-5-1.414-1.414Z'
28
+ d='M3 22v-2h18v2h-18ZM10.9998 4v10.5857l-3.2928-3.2927-1.414 1.414 5 5h1.414l5-5-1.414-1.414-3.2932 3.2932v-10.5862h-2Z'
33
29
  />
34
30
  )
35
31
  }
@@ -25,11 +25,7 @@ export const IconAlignTop: IconComponentType = forwardRef(
25
25
  },
26
26
  <path
27
27
  fill='currentColor'
28
- d='M21 3v2h-18v-2h18ZM13.0002 9v12h-2v-12h2Z'
29
- />,
30
- <path
31
- fill='currentColor'
32
- d='m7.707 13.707 4.293-4.293 4.293 4.293 1.414-1.414-5-5h-1.414l-5 5 1.414 1.414Z'
28
+ d='M21 3v2h-18v-2h18ZM16.293 13.707l-3.2928-3.2927v10.5857h-2v-10.5862l-3.2932 3.2932-1.414-1.414 5-5h1.414l5 5-1.414 1.414Z'
33
29
  />
34
30
  )
35
31
  }
@@ -25,11 +25,11 @@ export const IconArrowBoxLeft: IconComponentType = forwardRef(
25
25
  },
26
26
  <path
27
27
  fill='currentColor'
28
- d='m13.7075 12.2932-1.4142 1.4142-10.0003-10.0003 1.4142-1.4142 10.0003 10.0003Z'
28
+ d='M5.0001 19v-5h2v5c0 .5523.4477 1 1 1h11c.5523 0 1-.4477 1-1v-11c0-.5523-.4477-1-1-1h-5v-2h5c1.6569 0 3 1.3431 3 3v11c0 1.6569-1.3431 3-3 3h-11c-1.6568 0-3-1.3431-3-3Z'
29
29
  />,
30
30
  <path
31
31
  fill='currentColor'
32
- d='m4.0003 11.0003-.0007-7h7.0006v-1.9998l-7.9998-.0007-1 1v8.0005h1.9999ZM5.0001 19v-5h2v5c0 .5523.4477 1 1 1h11c.5523 0 1-.4477 1-1v-11c0-.5523-.4477-1-1-1h-5v-2h5c1.6569 0 3 1.3431 3 3v11c0 1.6569-1.3431 3-3 3h-11c-1.6568 0-3-1.3431-3-3Z'
32
+ d='m4.0003 11.0003-.0006-5.5865 8.2936 8.2936 1.4142-1.4142-8.2928-8.2929h5.5855v-1.9998l-7.9998-.0007-1 1v8.0005h1.9999Z'
33
33
  />
34
34
  )
35
35
  }
@@ -9,7 +9,7 @@ import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
9
9
  import { StyledIcon } from '../src/icon'
10
10
  import type { IconComponentType } from '../src/icon'
11
11
 
12
- export const IconDiagrammingFormat: IconComponentType = forwardRef(
12
+ export const IconDiagrammingShapes: IconComponentType = forwardRef(
13
13
  ({ size = 'medium', ...props }, forwardRef) => {
14
14
  const [debug] = useLocalStorage('DEBUG_ICON', false)
15
15
  return createElement(
@@ -33,4 +33,4 @@ export const IconDiagrammingFormat: IconComponentType = forwardRef(
33
33
  }
34
34
  )
35
35
 
36
- IconDiagrammingFormat[iconSymbol] = true
36
+ IconDiagrammingShapes[iconSymbol] = true
package/react/index.ts CHANGED
@@ -165,7 +165,7 @@ export { IconDiagramCardSmall2 } from './diagram-card-small-2'
165
165
  export { IconDiagramCardSmall3 } from './diagram-card-small-3'
166
166
  export { IconDiagramCardTeam } from './diagram-card-team'
167
167
  export { IconDiagramCardUser } from './diagram-card-user'
168
- export { IconDiagrammingFormat } from './diagramming-format'
168
+ export { IconDiagrammingShapes } from './diagramming-shapes'
169
169
  export { IconDiagramming } from './diagramming'
170
170
  export { IconDistributeHorizontal } from './distribute-horizontal'
171
171
  export { IconDistributeVertical } from './distribute-vertical'
@@ -269,7 +269,7 @@ export { IconMagnifyingGlass } from './magnifying-glass'
269
269
  export { IconMap } from './map'
270
270
  export { IconMegaphone } from './megaphone'
271
271
  export { IconMermaid } from './mermaid'
272
- export { IconMicrophoneDocument } from './microphone-document'
272
+ export { IconMicLinesDot } from './mic-lines-dot'
273
273
  export { IconMicrophoneSlash } from './microphone-slash'
274
274
  export { IconMicrophone } from './microphone'
275
275
  export { IconMinus } from './minus'
@@ -416,6 +416,7 @@ export { IconSmileySticker } from './smiley-sticker'
416
416
  export { IconSmiley } from './smiley'
417
417
  export { IconSocialAdo } from './social-ado'
418
418
  export { IconSocialAsana } from './social-asana'
419
+ export { IconSocialAws } from './social-aws'
419
420
  export { IconSocialDrawio } from './social-drawio'
420
421
  export { IconSocialFacebook } from './social-facebook'
421
422
  export { IconSocialInstagram } from './social-instagram'
@@ -520,12 +521,15 @@ export { IconTrophy } from './trophy'
520
521
  export { IconTshirt } from './tshirt'
521
522
  export { IconUserAdd } from './user-add'
522
523
  export { IconUserArrowRightUp } from './user-arrow-right-up'
524
+ export { IconUserArrowRight } from './user-arrow-right'
523
525
  export { IconUserBackgroundBlur } from './user-background-blur'
524
526
  export { IconUserCogPlus } from './user-cog-plus'
525
527
  export { IconUserCog } from './user-cog'
526
528
  export { IconUserEyeOpen } from './user-eye-open'
527
529
  export { IconUserFilter } from './user-filter'
528
530
  export { IconUserLoad } from './user-load'
531
+ export { IconUserMicSlash } from './user-mic-slash'
532
+ export { IconUserMic } from './user-mic'
529
533
  export { IconUserNumberThree } from './user-number-three'
530
534
  export { IconUserPenDashesBottom } from './user-pen-dashes-bottom'
531
535
  export { IconUserPenLineBottom } from './user-pen-line-bottom'
@@ -533,14 +537,16 @@ export { IconUserTickDown } from './user-tick-down'
533
537
  export { IconUser } from './user'
534
538
  export { IconUsersThree } from './users-three'
535
539
  export { IconUsers } from './users'
536
- export { IconVideoCameraSimpleCircle } from './video-camera-simple-circle'
540
+ export { IconVideoCameraDot } from './video-camera-dot'
541
+ export { IconVideoCameraLinesDot } from './video-camera-lines-dot'
542
+ export { IconVideoCameraLines } from './video-camera-lines'
537
543
  export { IconVideoCameraSimpleError } from './video-camera-simple-error'
538
- export { IconVideoCameraSimpleMic } from './video-camera-simple-mic'
539
544
  export { IconVideoCameraSimpleSlash } from './video-camera-simple-slash'
540
545
  export { IconVideoCameraSimple } from './video-camera-simple'
541
546
  export { IconVideoCamera } from './video-camera'
542
547
  export { IconViewCenter } from './view-center'
543
548
  export { IconViewSideLeft } from './view-side-left'
549
+ export { IconViewSideRight } from './view-side-right'
544
550
  export { IconWallet } from './wallet'
545
551
  export { IconWand } from './wand'
546
552
  export { IconWarning } from './warning'
@@ -9,7 +9,7 @@ import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
9
9
  import { StyledIcon } from '../src/icon'
10
10
  import type { IconComponentType } from '../src/icon'
11
11
 
12
- export const IconVideoCameraSimpleCircle: IconComponentType = forwardRef(
12
+ export const IconMicLinesDot: IconComponentType = forwardRef(
13
13
  ({ size = 'medium', ...props }, forwardRef) => {
14
14
  const [debug] = useLocalStorage('DEBUG_ICON', false)
15
15
  return createElement(
@@ -25,14 +25,14 @@ export const IconVideoCameraSimpleCircle: IconComponentType = forwardRef(
25
25
  },
26
26
  <path
27
27
  fill='currentColor'
28
- d='M14 4c1.6569 0 3 1.3431 3 3v1.3643l1.3594-1.1329.2783-.2314h2.3623l1 1v8l-1 1h-2.3623l-.2783-.2314-1.3594-1.1329v1.3643c0 1.6569-1.3431 3-3 3h-1v-2h1c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-9c-.5523 0-1 .4477-1 1v2h-2v-2c0-1.6569 1.3432-3 3-3h9Zm5.3633 5-2.3633 1.9688v2.0615l2.3633 1.9697h.6367v-6h-.6367Z'
28
+ d='M11.5 12c0 2.2937 1.9703 4 4.5 4s4.5-1.7062 4.5-4v-1h2v1c0 3.287-2.5331 5.5844-5.5 6v2h-2v-2c-2.9669-.4156-5.5-2.713-5.5-6v-1h2v1Z'
29
29
  />,
30
30
  <path
31
31
  fill='currentColor'
32
- d='M11 16c0 2.7614-2.2386 5-5 5s-5-2.2386-5-5 2.2386-5 5-5 5 2.2386 5 5Z'
32
+ d='M16 4c1.3595 0 2.5 1.2023 2.5 2.5v5c0 1.2977-1.1405 2.5-2.5 2.5s-2.5-1.2023-2.5-2.5v-5c0-1.2977 1.1405-2.5 2.5-2.5ZM6 13h-4v-2h4v2ZM10 9h-8v-2h8v2ZM7 5h-5v-2h5v2ZM10 5h-2v-2h2v2Z'
33
33
  />
34
34
  )
35
35
  }
36
36
  )
37
37
 
38
- IconVideoCameraSimpleCircle[iconSymbol] = true
38
+ IconMicLinesDot[iconSymbol] = true
@@ -0,0 +1,48 @@
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 IconSocialAws: 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='M1.0918 15.0115c-.223-.2059.0001-.4806.2461-.3261a21.9053 21.9053 0 0 0 10.8692 2.8886 21.6353 21.6353 0 0 0 8.3007-1.7158c.4119-.1544.755.2854.3545.5772-2.4027 1.779-5.8923 2.7236-8.9013 2.7236a16.1159 16.1159 0 0 1-10.8692-4.1475Z'
29
+ />,
30
+ <path
31
+ fill='currentColor'
32
+ d='M19.0205 14.8738c1.3785-.9666 3.6318-.6865 3.8955-.3662.2632.3204-.0684 2.5917-1.3613 3.6729-.1944.1658-.3836.0795-.2978-.1436.2688-.7264.9153-2.3497.6357-2.7451-.3089-.3947-2.0362-.1833-2.8144-.0918-.2346.0286-.2693-.1774-.0577-.3262ZM19.9649 6.0467l.2461.0224.123.0088c.0405.0054.0806.013.1201.0215l.2315.0557.2099.0518.208.0625.1543.0556c.0505.021.1001.0449.1485.0703a.7664.7664 0 0 1 .2236.1836.4134.4134 0 0 1 .0625.2402v.3428l-.0107.1026c-.0212.0872-.0741.1326-.1553.1328a.867.867 0 0 1-.2861-.0918 3.3835 3.3835 0 0 0-1.4073-.2803 1.9247 1.9247 0 0 0-.9726.206.7616.7616 0 0 0-.2207.2364.7594.7594 0 0 0-.1035.3066.7623.7623 0 0 0 .0341.3223.7618.7618 0 0 0 .1651.2783c.2371.1906.5123.3294.8066.4063l1.0352.332a2.2205 2.2205 0 0 1 1.1435.7031c.2253.2932.3448.6548.3379 1.0244a1.8882 1.8882 0 0 1-.166.8467 2.067 2.067 0 0 1-.5723.6465 2.412 2.412 0 0 1-.8115.4063 3.5185 3.5185 0 0 1-1.0244.1425v-.0107a4.9494 4.9494 0 0 1-1.1445-.1318 3.4953 3.4953 0 0 1-.8467-.292.4933.4933 0 0 1-.2227-.2061.5401.5401 0 0 1-.0459-.206v-.3711c0-.1488.0574-.2295.1661-.2295a.3972.3972 0 0 1 .1367 0l.1836.0742c.2596.1121.53.1988.8066.2578l.0488.0078c.2705.0504.5451.0777.8203.0781a1.9934 1.9934 0 0 0 1.0704-.2402.7805.7805 0 0 0 .3945-.6523.7062.7062 0 0 0-.2002-.5088 1.8913 1.8913 0 0 0-.7324-.3838l-1.0635-.337a2.2907 2.2907 0 0 1-1.1445-.7382 1.7573 1.7573 0 0 1-.3946-1.0645 1.6262 1.6262 0 0 1 .1944-.8125c.137-.2224.316-.4163.5263-.5713a2.2904 2.2904 0 0 1 .7608-.3779 3.2579 3.2579 0 0 1 .9209-.126c.082-.0009.1641.0012.2461.0059Z'
33
+ />,
34
+ <path
35
+ fill='currentColor'
36
+ fillRule='evenodd'
37
+ d='M4.6621 6.0125a2.6318 2.6318 0 0 1 1.9102.5723c.2175.2426.384.5272.4883.836.104.3085.1442.6352.1181.9599l.0059 2.4023a1.9995 1.9995 0 0 0 .086.6524c.0617.1821.1402.3586.2343.5263a.328.328 0 0 1 .0518.166.2807.2807 0 0 1-.045.126l-.0439.0518a.2829.2829 0 0 1-.0537.04l-.458.3028a.3505.3505 0 0 1-.1944.0683.3095.3095 0 0 1-.2177-.1025c-.1-.1029-.187-.218-.2578-.3428-.0744-.1201-.1485-.2637-.2286-.4238a2.7143 2.7143 0 0 1-2.1455 1.0068 1.994 1.994 0 0 1-.788-.1103 1.9933 1.9933 0 0 1-.6817-.4102 1.89 1.89 0 0 1-.417-.6504 1.8887 1.8887 0 0 1-.121-.7627 1.8656 1.8656 0 0 1 .1581-.8262c.115-.2597.2885-.49.5059-.6728a2.65 2.65 0 0 1 1.79-.5723c.2582.0027.5167.0222.7725.0576.2687.04.5721.0916.8408.1602v-.538a1.5964 1.5964 0 0 0-.3428-1.1436 1.673 1.673 0 0 0-1.1904-.3438 3.47 3.47 0 0 0-.789.0977 5.5078 5.5078 0 0 0-.7891.252 1.4313 1.4313 0 0 1-.252.0907.3924.3924 0 0 1-.1142 0c-.103 0-.1553-.0797-.1553-.2285v-.4267a.4818.4818 0 0 1 .0518-.1914c.0345-.0418.0765-.0762.121-.1065l.0792-.0478a5.2346 5.2346 0 0 1 .9267-.332 4.582 4.582 0 0 1 1.1445-.1368Zm-.0459 3.707a1.6661 1.6661 0 0 0-1.0869.2969 1.0212 1.0212 0 0 0-.2803.3779 1.021 1.021 0 0 0-.08.4639 1.0529 1.0529 0 0 0 .0547.416c.0461.1335.1192.2565.2138.3614.1062.0921.2299.1628.3633.207.1334.0441.275.0614.415.0508a2.2902 2.2902 0 0 0 .755-.1319 1.6088 1.6088 0 0 0 .6923-.4687 1.1878 1.1878 0 0 0 .252-.4639 2.5697 2.5697 0 0 0 .0683-.6347v-.3086a5.8132 5.8132 0 0 0-.6806-.1202 5.6956 5.6956 0 0 0-.6866-.0459Z'
38
+ clipRule='evenodd'
39
+ />,
40
+ <path
41
+ fill='currentColor'
42
+ d='M15.8858 6.201h.7177a.1652.1652 0 0 1 .0362.0078.1614.1614 0 0 1 .1045.1758 1.0696 1.0696 0 0 1 0 .1201l-.0518.1768-1.7793 5.6523a.527.527 0 0 1-.1543.2861l-.0713.0342a.4473.4473 0 0 1-.2314.0225h-.5723a.4645.4645 0 0 1-.2285-.0362l-.0693-.038a.5322.5322 0 0 1-.1368-.2969l-1.1445-4.708-1.1435 4.708a.5739.5739 0 0 1-.1436.2969l-.0674.038a.449.449 0 0 1-.2246.0362h-.708a.4609.4609 0 0 1-.1416-.0342l-.0654-.0342a.5267.5267 0 0 1-.1543-.2861l-1.7168-5.6572a1.4393 1.4393 0 0 1-.0625-.2803.1619.1619 0 0 1 .0078-.0713.1611.1611 0 0 1 .0986-.0986.1636.1636 0 0 1 .0352-.0078h.831a.4714.4714 0 0 1 .212.0683.648.648 0 0 1 .1484.292l1.2412 4.8281 1.1445-4.834a.5724.5724 0 0 1 .0918-.2265l.0508-.0655a.488.488 0 0 1 .2158-.0683h.7256a.5108.5108 0 0 1 .2197.0684.5741.5741 0 0 1 .1377.292l1.1446 4.8974 1.2636-4.8975a.6482.6482 0 0 1 .1543-.292.4596.4596 0 0 1 .2862-.0683Z'
43
+ />
44
+ )
45
+ }
46
+ )
47
+
48
+ IconSocialAws[iconSymbol] = true
@@ -25,11 +25,13 @@ export const IconSquaresTwoOverlap: IconComponentType = forwardRef(
25
25
  },
26
26
  <path
27
27
  fill='currentColor'
28
- d='M4 9c0-.5523.4477-1 1-1h5.8701l3.1299 3.3906v7.6094c0 .5523-.4477 1-1 1h-8c-.5523 0-1-.4477-1-1v-10Zm-2 10c0 1.6569 1.3432 3 3 3h8c1.6569 0 3-1.3431 3-3v-8.3906l-3.957-4.2881-.2979-.3213h-6.7451c-1.6568 0-3 1.3431-3 3v10Z'
28
+ fillRule='evenodd'
29
+ d='M13.1543 6.004c1.5851.0802 2.8457 1.3909 2.8457 2.996v10c0 1.6569-1.3431 3-3 3h-8c-1.6568 0-3-1.3431-3-3v-10c0-1.6569 1.3432-3 3-3h8l.1543.004Zm-8.1543 1.996c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h8c.5523 0 1-.4477 1-1v-10c0-.5177-.3933-.9438-.8975-.9951l-.1025-.0049h-8Z'
30
+ clipRule='evenodd'
29
31
  />,
30
32
  <path
31
33
  fill='currentColor'
32
- d='M22 15v-8.3906l-3.957-4.2881-.2979-.3213h-6.7451c-1.6569 0-3 1.3432-3 3h2c0-.5523.4477-1 1-1h5.8701l3.1299 3.3906v7.6094c0 .5523-.4477 1-1 1h-1v2h1c1.6569 0 3-1.3431 3-3Z'
34
+ d='M19.1543 2.004c1.5851.0802 2.8457 1.3909 2.8457 2.996v10c0 1.6569-1.3431 3-3 3h-1v-2h1c.5523 0 1-.4477 1-1v-10c0-.5177-.3933-.9438-.8975-.9951l-.1025-.0049h-8c-.5523 0-1 .4477-1 1h-2c0-1.6568 1.3431-3 3-3h8l.1543.004Z'
33
35
  />
34
36
  )
35
37
  }
@@ -9,7 +9,7 @@ import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
9
9
  import { StyledIcon } from '../src/icon'
10
10
  import type { IconComponentType } from '../src/icon'
11
11
 
12
- export const IconMicrophoneDocument: IconComponentType = forwardRef(
12
+ export const IconUserArrowRight: IconComponentType = forwardRef(
13
13
  ({ size = 'medium', ...props }, forwardRef) => {
14
14
  const [debug] = useLocalStorage('DEBUG_ICON', false)
15
15
  return createElement(
@@ -25,18 +25,16 @@ export const IconMicrophoneDocument: IconComponentType = forwardRef(
25
25
  },
26
26
  <path
27
27
  fill='currentColor'
28
- d='M2 19v-13c0-1.6569 1.3432-3 3-3h8v2h-8c-.5523 0-1 .4477-1 1v13c0 .5523.4477 1 1 1h13c.5523 0 1-.4477 1-1v-4h2v4c0 1.6569-1.3431 3-3 3h-13c-1.6568 0-3-1.3431-3-3Z'
28
+ d='M21.707 16.293v1.414l-3.5 3.5-1.414-1.414 1.7929-1.793h-5.5859v-2h5.5859l-1.7929-1.793 1.414-1.414 3.5 3.5ZM11.9502 15c-2.6085 0-4.7922 1.9767-5.0518 4.5723l-.1533 1.5273-1.9902-.1992.1533-1.5274c.3619-3.6179 3.406-6.373 7.042-6.373v2Z'
29
29
  />,
30
30
  <path
31
31
  fill='currentColor'
32
- d='M12 12v2h-6v-2h6ZM17 16v2h-11v-2h11ZM21 6.5682v-3.1364c0-.7908-.6716-1.4318-1.5-1.4318s-1.5.641-1.5 1.4318v3.1364c0 .7908.6716 1.4318 1.5 1.4318s1.5-.641 1.5-1.4318Z'
33
- />,
34
- <path
35
- fill='currentColor'
36
- d='M15 6.5v-.5h2v.5c0 1.3807 1.1193 2.5 2.5 2.5s2.5-1.1193 2.5-2.5v-.5h2v.5c0 2.1415-1.4962 3.9318-3.5 4.3867v2.1133h-2v-2.1133c-2.0038-.4549-3.5-2.2452-3.5-4.3867Z'
32
+ fillRule='evenodd'
33
+ d='M11.9502 3c2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5-4.5-2.0147-4.5-4.5 2.0147-4.5 4.5-4.5Zm0 2c-1.3807 0-2.5 1.1193-2.5 2.5s1.1193 2.5 2.5 2.5 2.5-1.1193 2.5-2.5-1.1193-2.5-2.5-2.5Z'
34
+ clipRule='evenodd'
37
35
  />
38
36
  )
39
37
  }
40
38
  )
41
39
 
42
- IconMicrophoneDocument[iconSymbol] = true
40
+ IconUserArrowRight[iconSymbol] = true
@@ -0,0 +1,40 @@
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 IconUserMicSlash: 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.7578 8.1533-3.9805 4.6172v2.2295c-.0001 1.3542-.9004 2.5918-2.2773 2.5918-.5606 0-1.0406-.2063-1.4141-.541l-.8945 1.0371c.6211.5702 1.433.9121 2.3086.9121 1.899 0 3.5-1.6074 3.5-3.667v-1.333h2v1.333c0 2.7502-1.9178 5.0856-4.5 5.5723v1.0947h-2v-1.0947c-.9935-.1881-1.888-.6497-2.6133-1.3037l-2.6289 3.0517-1.5156-1.3066 12.5-14.5 1.5156 1.3066ZM9 15c-2.6085 0-4.843 1.9767-5.1025 4.5723l-.1524 1.5273-1.9902-.1992.1523-1.5274c.3619-3.6179 3.4568-6.373 7.0928-6.373v2ZM13 14.1602l-1.8975 2.2617a5.8463 5.8463 0 0 1-.1025-1.0889v-1.333h2v.1602ZM16.5 9.0371c.3318 0 .6531.071.9463.205l-3.2236 3.8448v-1.5869c0-.695.2238-1.3166.6494-1.7705.4261-.4543 1.0103-.6924 1.6279-.6924Z'
29
+ />,
30
+ <path
31
+ fill='currentColor'
32
+ fillRule='evenodd'
33
+ d='M9 3c2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5-4.5-2.0147-4.5-4.5 2.0147-4.5 4.5-4.5Zm0 2c-1.3807 0-2.5 1.1193-2.5 2.5s1.1193 2.5 2.5 2.5 2.5-1.1193 2.5-2.5-1.1193-2.5-2.5-2.5Z'
34
+ clipRule='evenodd'
35
+ />
36
+ )
37
+ }
38
+ )
39
+
40
+ IconUserMicSlash[iconSymbol] = true
@@ -0,0 +1,44 @@
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 IconUserMic: 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='M13 15.333c0 2.0596 1.601 3.667 3.5 3.667s3.5-1.6074 3.5-3.667v-1.333h2v1.333c0 2.7502-1.9178 5.0856-4.5 5.5723v1.0947h-2v-1.0947c-2.5822-.4867-4.5-2.8221-4.5-5.5723v-1.333h2v1.333ZM9 15c-2.6085 0-4.843 1.9767-5.1025 4.5723l-.1524 1.5273-1.9902-.1992.1523-1.5274c.3619-3.6179 3.4568-6.373 7.0928-6.373v2Z'
29
+ />,
30
+ <path
31
+ fill='currentColor'
32
+ d='M16.5 9.0645c.6104 0 1.1868.236 1.6074.6845.4201.448.6425 1.062.6426 1.751v3.5c-.0002 1.3435-.8927 2.5645-2.25 2.5645s-2.2498-1.221-2.25-2.5645v-3.5c.0001-.689.2225-1.303.6426-1.751.4206-.4484.997-.6845 1.6074-.6845Z'
33
+ />,
34
+ <path
35
+ fill='currentColor'
36
+ fillRule='evenodd'
37
+ d='M9 3c2.4853 0 4.5 2.0147 4.5 4.5s-2.0147 4.5-4.5 4.5-4.5-2.0147-4.5-4.5 2.0147-4.5 4.5-4.5Zm0 2c-1.3807 0-2.5 1.1193-2.5 2.5s1.1193 2.5 2.5 2.5 2.5-1.1193 2.5-2.5-1.1193-2.5-2.5-2.5Z'
38
+ clipRule='evenodd'
39
+ />
40
+ )
41
+ }
42
+ )
43
+
44
+ IconUserMic[iconSymbol] = true
@@ -9,7 +9,7 @@ import { useLocalStorage } from '@mirohq/design-system-use-local-storage'
9
9
  import { StyledIcon } from '../src/icon'
10
10
  import type { IconComponentType } from '../src/icon'
11
11
 
12
- export const IconVideoCameraSimpleMic: IconComponentType = forwardRef(
12
+ export const IconVideoCameraDot: IconComponentType = forwardRef(
13
13
  ({ size = 'medium', ...props }, forwardRef) => {
14
14
  const [debug] = useLocalStorage('DEBUG_ICON', false)
15
15
  return createElement(
@@ -25,18 +25,14 @@ export const IconVideoCameraSimpleMic: IconComponentType = forwardRef(
25
25
  },
26
26
  <path
27
27
  fill='currentColor'
28
- d='M8 15.5682v-3.1364c0-.7908-.6716-1.4318-1.5-1.4318s-1.5.641-1.5 1.4318v3.1364c0 .7908.6716 1.4318 1.5 1.4318s1.5-.641 1.5-1.4318Z'
28
+ d='M12 6h-7c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h9c.5523 0 1-.4477 1-1v-6.5h2v2.5303l2.3633 1.9697h.6367v-6h2v7l-1 1h-2.3623l-.2783-.2314-1.3594-1.1329v1.3643c0 1.6569-1.3431 3-3 3h-9c-1.6568 0-3-1.3431-3-3v-10c0-1.6569 1.3432-3 3-3h7v2Z'
29
29
  />,
30
30
  <path
31
31
  fill='currentColor'
32
- d='M2 15.5v-.5h2v.5c0 1.3807 1.1193 2.5 2.5 2.5s2.5-1.1193 2.5-2.5v-.5h2v.5c0 2.1415-1.4962 3.9318-3.5 4.3867v1.1133h-2v-1.1133c-2.0038-.4549-3.5-2.2452-3.5-4.3867Z'
33
- />,
34
- <path
35
- fill='currentColor'
36
- d='M14 4c1.6569 0 3 1.3431 3 3v1.3643l1.3594-1.1329.2783-.2314h2.3623l1 1v8l-1 1h-2.3623l-.2783-.2314-1.3594-1.1329v1.3643c0 1.6569-1.3431 3-3 3h-2v-2h2c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-9c-.5523 0-1 .4477-1 1v3h-2v-3c0-1.6569 1.3432-3 3-3h9Zm5.3633 5-2.3633 1.9688v2.0615l2.3633 1.9697h.6367v-6h-.6367Z'
32
+ d='M17.5 2c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5 1.567-3.5 3.5-3.5Z'
37
33
  />
38
34
  )
39
35
  }
40
36
  )
41
37
 
42
- IconVideoCameraSimpleMic[iconSymbol] = true
38
+ IconVideoCameraDot[iconSymbol] = true
@@ -0,0 +1,38 @@
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 IconVideoCameraLinesDot: 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 6h-7c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h9c.5523 0 1-.4477 1-1v-6.5h2v2.5303l2.3633 1.9697h.6367v-6h2v7l-1 1h-2.3623l-.2783-.2314-1.3594-1.1329v1.3643c0 1.6569-1.3431 3-3 3h-9c-1.6568 0-3-1.3431-3-3v-10c0-1.6569 1.3432-3 3-3h7v2Z'
29
+ />,
30
+ <path
31
+ fill='currentColor'
32
+ d='M10 13v2h-4v-2h4ZM13 13v2h-2v-2h2ZM13 9v2h-7v-2h7ZM17.5 2c1.933 0 3.5 1.567 3.5 3.5s-1.567 3.5-3.5 3.5-3.5-1.567-3.5-3.5 1.567-3.5 3.5-3.5Z'
33
+ />
34
+ )
35
+ }
36
+ )
37
+
38
+ IconVideoCameraLinesDot[iconSymbol] = true
@@ -0,0 +1,40 @@
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 IconVideoCameraLines: 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='M10 13v2h-4v-2h4ZM13 13v2h-2v-2h2ZM13 9v2h-7v-2h7Z'
29
+ />,
30
+ <path
31
+ fill='currentColor'
32
+ fillRule='evenodd'
33
+ d='M14 4c1.6569 0 3 1.3431 3 3v1.3652l1.6377-1.3652h2.3623l1 1v8l-1 1h-2.3623l-1.6377-1.3652v1.3652c0 1.6569-1.3431 3-3 3h-9c-1.6568 0-3-1.3431-3-3v-10c0-1.6569 1.3432-3 3-3h9Zm-9 2c-.5523 0-1 .4477-1 1v10c0 .5523.4477 1 1 1h9c.5523 0 1-.4477 1-1v-10c0-.5523-.4477-1-1-1h-9Zm12 4.9688v2.0624l2.3623 1.9688h.6377v-6h-.6377l-2.3623 1.9688Z'
34
+ clipRule='evenodd'
35
+ />
36
+ )
37
+ }
38
+ )
39
+
40
+ IconVideoCameraLines[iconSymbol] = true
@@ -0,0 +1,39 @@
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 IconViewSideRight: 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='M20 6c0-.5523-.4477-1-1-1h-14c-.5523 0-1 .4477-1 1v12c0 .5523.4477 1 1 1h14c.5523 0 1-.4477 1-1v-12Zm2 12c0 1.6569-1.3431 3-3 3h-14c-1.6568 0-3-1.3431-3-3v-12c0-1.6569 1.3432-3 3-3h14c1.6569 0 3 1.3431 3 3v12Z'
29
+ />,
30
+ <path fill='currentColor' d='M13 16v-8h4v8h-4Z' />,
31
+ <path
32
+ fill='currentColor'
33
+ d='M17 7c.5523 0 1 .4477 1 1v8c0 .5523-.4477 1-1 1h-4c-.5523 0-1-.4477-1-1v-8l.0049-.1025a1.0003 1.0003 0 0 1 .9951-.8975h4Zm-3 8h2v-6h-2v6Z'
34
+ />
35
+ )
36
+ }
37
+ )
38
+
39
+ IconViewSideRight[iconSymbol] = true
@@ -1,2 +1,2 @@
1
1
  <!-- DO NOT MODIFY THIS FILE: This file was generated by sync icons utility -->
2
- <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="M3 22v-2h18v2h-18ZM10.9998 16v-12h2v12h-2Z" style="vector-effect:non-scaling-stroke"/><path fill="currentColor" d="m16.293 11.293-4.293 4.2929-4.293-4.2929-1.414 1.414 5 5h1.414l5-5-1.414-1.414Z" style="vector-effect:non-scaling-stroke"/></svg>
2
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path fill="currentColor" d="M3 22v-2h18v2h-18ZM10.9998 4v10.5857l-3.2928-3.2927-1.414 1.414 5 5h1.414l5-5-1.414-1.414-3.2932 3.2932v-10.5862h-2Z" style="vector-effect:non-scaling-stroke"/></svg>