@mirohq/design-system-icons 0.53.1 → 0.54.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +126 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +124 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +7 -1
- package/package.json +3 -3
- package/react/diagramming.tsx +63 -0
- package/react/index.ts +3 -0
- package/react/table.tsx +37 -0
- package/react/wifi.tsx +38 -0
- package/svg/24/diagramming.svg +2 -0
- package/svg/24/table.svg +2 -0
- package/svg/24/wifi.svg +2 -0
- package/svg/meta.json +28 -1
package/dist/module.js
CHANGED
|
@@ -5323,6 +5323,70 @@ const IconDiagrammingFormat = forwardRef(
|
|
|
5323
5323
|
);
|
|
5324
5324
|
IconDiagrammingFormat[iconSymbol] = true;
|
|
5325
5325
|
|
|
5326
|
+
const IconDiagramming = forwardRef(
|
|
5327
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5328
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
5329
|
+
return createElement(
|
|
5330
|
+
StyledIcon,
|
|
5331
|
+
{
|
|
5332
|
+
...props,
|
|
5333
|
+
weight,
|
|
5334
|
+
debug,
|
|
5335
|
+
"aria-hidden": true,
|
|
5336
|
+
size,
|
|
5337
|
+
viewBox: "0 0 24 24",
|
|
5338
|
+
fill: "none",
|
|
5339
|
+
ref: forwardRef2
|
|
5340
|
+
},
|
|
5341
|
+
/* @__PURE__ */ jsx(
|
|
5342
|
+
"path",
|
|
5343
|
+
{
|
|
5344
|
+
stroke: "currentColor",
|
|
5345
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5346
|
+
d: "M14 5h-4c-2.2091 0-4 1.7909-4 4M14 19h-5c-1.6569 0-3-1.3431-3-3"
|
|
5347
|
+
}
|
|
5348
|
+
),
|
|
5349
|
+
/* @__PURE__ */ jsx(
|
|
5350
|
+
"rect",
|
|
5351
|
+
{
|
|
5352
|
+
width: 6,
|
|
5353
|
+
height: 6,
|
|
5354
|
+
x: 3,
|
|
5355
|
+
y: 9,
|
|
5356
|
+
stroke: "currentColor",
|
|
5357
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5358
|
+
rx: 1.5
|
|
5359
|
+
}
|
|
5360
|
+
),
|
|
5361
|
+
/* @__PURE__ */ jsx(
|
|
5362
|
+
"rect",
|
|
5363
|
+
{
|
|
5364
|
+
width: 6,
|
|
5365
|
+
height: 6,
|
|
5366
|
+
x: 14,
|
|
5367
|
+
y: 3,
|
|
5368
|
+
stroke: "currentColor",
|
|
5369
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5370
|
+
rx: 1.5
|
|
5371
|
+
}
|
|
5372
|
+
),
|
|
5373
|
+
/* @__PURE__ */ jsx(
|
|
5374
|
+
"rect",
|
|
5375
|
+
{
|
|
5376
|
+
width: 6,
|
|
5377
|
+
height: 6,
|
|
5378
|
+
x: 14,
|
|
5379
|
+
y: 15,
|
|
5380
|
+
stroke: "currentColor",
|
|
5381
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
5382
|
+
rx: 1.5
|
|
5383
|
+
}
|
|
5384
|
+
)
|
|
5385
|
+
);
|
|
5386
|
+
}
|
|
5387
|
+
);
|
|
5388
|
+
IconDiagramming[iconSymbol] = true;
|
|
5389
|
+
|
|
5326
5390
|
const IconDistributeHorizontal = forwardRef(
|
|
5327
5391
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
5328
5392
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -15283,6 +15347,35 @@ const IconTableFormat = forwardRef(
|
|
|
15283
15347
|
);
|
|
15284
15348
|
IconTableFormat[iconSymbol] = true;
|
|
15285
15349
|
|
|
15350
|
+
const IconTable = forwardRef(
|
|
15351
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15352
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
15353
|
+
return createElement(
|
|
15354
|
+
StyledIcon,
|
|
15355
|
+
{
|
|
15356
|
+
...props,
|
|
15357
|
+
weight,
|
|
15358
|
+
debug,
|
|
15359
|
+
"aria-hidden": true,
|
|
15360
|
+
size,
|
|
15361
|
+
viewBox: "0 0 24 24",
|
|
15362
|
+
fill: "none",
|
|
15363
|
+
ref: forwardRef2
|
|
15364
|
+
},
|
|
15365
|
+
/* @__PURE__ */ jsx(
|
|
15366
|
+
"path",
|
|
15367
|
+
{
|
|
15368
|
+
fill: "currentColor",
|
|
15369
|
+
fillRule: "evenodd",
|
|
15370
|
+
d: "M4 5c0-.5523.4477-1 1-1h14c.5523 0 1 .4477 1 1v3h-16v-3Zm7 5h9v4h-9v-4Zm-2 4v-4h-5v4h5Zm-5 2h5v4h-4c-.5523 0-1-.4477-1-1v-3Zm7 0h9v3c0 .5523-.4477 1-1 1h-8v-4Zm-6-14c-1.6568 0-3 1.3432-3 3v14c0 1.6569 1.3432 3 3 3h14c1.6569 0 3-1.3431 3-3v-14c0-1.6568-1.3431-3-3-3h-14Z",
|
|
15371
|
+
clipRule: "evenodd"
|
|
15372
|
+
}
|
|
15373
|
+
)
|
|
15374
|
+
);
|
|
15375
|
+
}
|
|
15376
|
+
);
|
|
15377
|
+
IconTable[iconSymbol] = true;
|
|
15378
|
+
|
|
15286
15379
|
const IconTag = forwardRef(
|
|
15287
15380
|
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
15288
15381
|
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
@@ -17425,5 +17518,35 @@ const IconWallet = forwardRef(
|
|
|
17425
17518
|
);
|
|
17426
17519
|
IconWallet[iconSymbol] = true;
|
|
17427
17520
|
|
|
17428
|
-
|
|
17521
|
+
const IconWifi = forwardRef(
|
|
17522
|
+
({ size = "medium", weight = "normal", ...props }, forwardRef2) => {
|
|
17523
|
+
const [debug] = useLocalStorage("DEBUG_ICON", false);
|
|
17524
|
+
return createElement(
|
|
17525
|
+
StyledIcon,
|
|
17526
|
+
{
|
|
17527
|
+
...props,
|
|
17528
|
+
weight,
|
|
17529
|
+
debug,
|
|
17530
|
+
"aria-hidden": true,
|
|
17531
|
+
size,
|
|
17532
|
+
viewBox: "0 0 24 24",
|
|
17533
|
+
fill: "none",
|
|
17534
|
+
ref: forwardRef2
|
|
17535
|
+
},
|
|
17536
|
+
/* @__PURE__ */ jsx("circle", { cx: 12, cy: 17.759, r: 1.5, fill: "currentColor" }),
|
|
17537
|
+
/* @__PURE__ */ jsx(
|
|
17538
|
+
"path",
|
|
17539
|
+
{
|
|
17540
|
+
stroke: "currentColor",
|
|
17541
|
+
strokeLinecap: "round",
|
|
17542
|
+
strokeWidth: "var(--svg-stroke-width)",
|
|
17543
|
+
d: "M7.2353 13.9013c2.647-2.647 6.3529-3.1765 9.5294 0m-13.7647-4.2353c5.2941-5.2941 12.7059-5.2941 18 0"
|
|
17544
|
+
}
|
|
17545
|
+
)
|
|
17546
|
+
);
|
|
17547
|
+
}
|
|
17548
|
+
);
|
|
17549
|
+
IconWifi[iconSymbol] = true;
|
|
17550
|
+
|
|
17551
|
+
export { IconActivity, IconAddLineBottom, IconAddLineRight, IconAiText, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconAlignmentScale, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatLeft, IconArrowFatLeftRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArrowsTimeBackward, IconArrowsTimeForward, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBoxCaptions, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, IconCardCircles, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatCheck, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesDot, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronRightSmall, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconCoins, IconCoinsChecked, IconCoinsSlash, IconColumnsFormat, IconColumnsThree, IconCommentGroup, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, IconCounter, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCursorTextLines, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDiagramCardLarge1, IconDiagramCardLarge2, IconDiagramCardLarge3, IconDiagramCardLarge4, IconDiagramCardMagnifyingGlass, IconDiagramCardSmall1, IconDiagramCardSmall2, IconDiagramCardSmall3, IconDiagramCardTeam, IconDiagramCardUser, IconDiagramming, IconDiagrammingFormat, IconDistributeHorizontal, IconDistributeVertical, IconDocFormat, IconDollarSignCurrency, IconDotVoting, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, IconExclamationPointCircle, IconExport, IconExternalFormat, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFileSpreadsheet, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGavel, IconGift, IconGlobe, IconGoogleDrive, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconIndentLeft, IconIndentRight, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbox, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLineTwoDiagonalTopRightDouble, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMagnifyingGlassPlus, IconMap, IconMegaphone, IconMermaid, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMobile, IconMonitor, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconNotepad, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPeopleList, IconPersonInCircle, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPolling, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProtoButton, IconProtoCheckbox, IconProtoDropdown, IconProtoInput, IconProtoNumber, IconProtoRadio, IconProtoSlider, IconPrototypeFormat, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLarge, IconRectangleDotLinePen, IconRectangleDotMedium, IconRectangleDotSmall, IconRectangleFrame2Lines, IconRectangleLine, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShadow, IconShapes, IconShapesLines, IconShieldCheck, IconShieldLock, IconShieldLockFilled, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSingleSparksFilled, IconSlideFormat, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialLooker, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSpinner, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStackedCircles, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStoryPoints, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTable, IconTableFormat, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLineHeight, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimelineFormat, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconTshirt, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserBackgroundBlur, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserFilter, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleError, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet, IconWifi };
|
|
17429
17552
|
//# sourceMappingURL=module.js.map
|