@mirohq/design-system-icons 0.12.5 → 0.13.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 +173 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +166 -2
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +17 -1
- package/package.json +8 -3
- package/react/arrows-down-up.tsx +30 -0
- package/react/badge.tsx +31 -0
- package/react/clock.tsx +1 -1
- package/react/index.ts +8 -0
- package/react/megaphone.tsx +31 -0
- package/react/moon.tsx +30 -0
- package/react/rocket.tsx +31 -0
- package/react/switch.tsx +32 -0
- package/react/toolbar.tsx +31 -0
- package/react/tooltip.tsx +31 -0
- package/svg/24/arrows-down-up.svg +2 -0
- package/svg/24/badge.svg +2 -0
- package/svg/24/clock.svg +1 -1
- package/svg/24/megaphone.svg +2 -0
- package/svg/24/moon.svg +2 -0
- package/svg/24/rocket.svg +2 -0
- package/svg/24/switch.svg +2 -0
- package/svg/24/toolbar.svg +2 -0
- package/svg/24/tooltip.svg +2 -0
- package/svg/meta.json +44 -0
package/dist/types.d.ts
CHANGED
|
@@ -525,6 +525,8 @@ declare const IconArrowsClockwiseX: ForwardRefExoticComponent<IconProps & RefAtt
|
|
|
525
525
|
|
|
526
526
|
declare const IconArrowsClockwiseY: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
527
527
|
|
|
528
|
+
declare const IconArrowsDownUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
529
|
+
|
|
528
530
|
declare const IconArrowsHorizontalLinesTopBottom: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
529
531
|
|
|
530
532
|
declare const IconArrowsInSimple: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -539,6 +541,8 @@ declare const IconArticle: ForwardRefExoticComponent<IconProps & RefAttributes<S
|
|
|
539
541
|
|
|
540
542
|
declare const IconAt: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
541
543
|
|
|
544
|
+
declare const IconBadge: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
545
|
+
|
|
542
546
|
declare const IconBarrel: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
543
547
|
|
|
544
548
|
declare const IconBellSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -835,6 +839,8 @@ declare const IconMagnifyingGlass: ForwardRefExoticComponent<IconProps & RefAttr
|
|
|
835
839
|
|
|
836
840
|
declare const IconMap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
837
841
|
|
|
842
|
+
declare const IconMegaphone: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
843
|
+
|
|
838
844
|
declare const IconMicrophoneSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
839
845
|
|
|
840
846
|
declare const IconMicrophone: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -849,6 +855,8 @@ declare const IconMonitorPlay: ForwardRefExoticComponent<IconProps & RefAttribut
|
|
|
849
855
|
|
|
850
856
|
declare const IconMonitorStop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
851
857
|
|
|
858
|
+
declare const IconMoon: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
859
|
+
|
|
852
860
|
declare const IconMouse: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
853
861
|
|
|
854
862
|
declare const IconNavigationArrowLines: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -971,6 +979,8 @@ declare const IconRectanglesTwoUser: ForwardRefExoticComponent<IconProps & RefAt
|
|
|
971
979
|
|
|
972
980
|
declare const IconRhombus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
973
981
|
|
|
982
|
+
declare const IconRocket: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
983
|
+
|
|
974
984
|
declare const IconRssRectangle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
975
985
|
|
|
976
986
|
declare const IconScissors: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -1081,6 +1091,8 @@ declare const IconStroke5: ForwardRefExoticComponent<IconProps & RefAttributes<S
|
|
|
1081
1091
|
|
|
1082
1092
|
declare const IconStroke6: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1083
1093
|
|
|
1094
|
+
declare const IconSwitch: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1095
|
+
|
|
1084
1096
|
declare const IconTag: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1085
1097
|
|
|
1086
1098
|
declare const IconTextAUnderline: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -1123,6 +1135,10 @@ declare const IconTicket: ForwardRefExoticComponent<IconProps & RefAttributes<SV
|
|
|
1123
1135
|
|
|
1124
1136
|
declare const IconTimer: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1125
1137
|
|
|
1138
|
+
declare const IconToolbar: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1139
|
+
|
|
1140
|
+
declare const IconTooltip: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1141
|
+
|
|
1126
1142
|
declare const IconTrackpad: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1127
1143
|
|
|
1128
1144
|
declare const IconTrapeze: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -1173,4 +1189,4 @@ declare const IconViewSideLeft: ForwardRefExoticComponent<IconProps & RefAttribu
|
|
|
1173
1189
|
|
|
1174
1190
|
declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
1175
1191
|
|
|
1176
|
-
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArticle, IconAt, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconPaintBucket, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPentagon, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStickyCorners, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
1192
|
+
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconChatDashesLinesTwo, IconChatLinesCross, IconChatLinesEyeOpen, IconChatLinesTwo, IconChatLinesTwoStack, IconChatPlus, IconChatTextArrow, IconChatTwo, IconCheckMark, IconCheckboardSquareCentered, IconChevronDown, IconChevronDownDouble, IconChevronLeft, IconChevronLeftDouble, IconChevronRight, IconChevronRightDouble, IconChevronUp, IconChevronUpDouble, IconChevronUpDown, IconChevronUpDownLine, IconCircle, IconCircleCorners, IconCircleMotionX, IconCircleNotch, IconCircleSlash, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCloud, IconCluster, IconClustered, IconCog, IconColumnsThree, IconConeSerpentine, IconCornersThreeEyeOpen, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCrossFat, IconCrossSquare, IconCube, IconCursor, IconCursorFilled, IconCursorLines, IconCursorText, IconCurveSquareCircleArrow, IconDashLeftDownSquareDashRightUp, IconDashLeftUpSquareDashDownRight, IconDashSquareDashHorizontal, IconDashSquareDashVertical, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsThree, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationPointCircle, IconExport, IconEyeClosed, IconEyeClosedDotsFourFrameBroken, IconEyeOpen, IconEyeOpenLineFrameBroken, IconEyeOpenSlash, IconEyedropper, IconFactory, IconFactoryHouse, IconFlag, IconFolder, IconFrame, IconFrameLinesTwo, IconFramePlay, IconFramePlus, IconFunnel, IconGauge, IconGift, IconGlobe, IconGraduationCap, IconGrid, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHandPointing, IconHeadsetPerson, IconHeart, IconHeartFilled, IconHexagon, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightbulb, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLinesTopLeftColumnsTwo, IconLink, IconLinkPlus, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconLogin, IconLogout, IconMagnet, IconMagnifyingGlass, IconMagnifyingGlassLightning, IconMap, IconMegaphone, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconPaintBucket, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPentagon, IconPlaceholder, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconQuestionMark, IconQuestionMarkCircle, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectanglePlayStack, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStickyCorners, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextCursorEyeOpen, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTickCircle, IconTicket, IconTimer, IconToolbar, IconTooltip, IconTrackpad, IconTrapeze, IconTrash, IconTrashSimple, IconTriangle, IconTriangleSquareCircle, IconTrident, IconTrophy, IconUser, IconUserAdd, IconUserArrowRightUp, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -31,17 +31,22 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@mirohq/design-system-link": "^1.2.7",
|
|
34
|
+
"@mirohq/design-system-utils": "^0.13.1",
|
|
34
35
|
"@mirohq/design-system-stitches": "^2.2.4",
|
|
35
|
-
"@mirohq/design-system-primitive": "^1.1.0"
|
|
36
|
-
"@mirohq/design-system-utils": "^0.13.1"
|
|
36
|
+
"@mirohq/design-system-primitive": "^1.1.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@svgr/cli": "^6.5.1",
|
|
40
|
+
"@types/lodash.camelcase": "^4.3.7",
|
|
41
|
+
"@types/lodash.capitalize": "^4.2.7",
|
|
42
|
+
"@types/lodash.kebabcase": "^4.1.7",
|
|
40
43
|
"@types/react-lottie": "1.2.6",
|
|
41
44
|
"@types/shelljs": "0.8.11",
|
|
42
45
|
"dotenv": "16.0.3",
|
|
46
|
+
"fuse.js": "^6.6.2",
|
|
43
47
|
"lodash.camelcase": "^3.0.0",
|
|
44
48
|
"lodash.capitalize": "^3.0.0",
|
|
49
|
+
"lodash.kebabcase": "^4.1.1",
|
|
45
50
|
"node-fetch": "3.2.9",
|
|
46
51
|
"react-lottie": "1.2.3",
|
|
47
52
|
"shelljs": "0.8.5",
|
|
@@ -0,0 +1,30 @@
|
|
|
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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconArrowsDownUp: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeWidth={2}
|
|
27
|
+
d='M7 5v14m0 0 4-4m-4 4-4-4m14 4v-14m0 0-4 4m4-4 4 4'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
package/react/badge.tsx
ADDED
|
@@ -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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconBadge: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
d='M8 17c-6 0-6-9 0-9h8c6 0 6 9 0 9h-8Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
package/react/clock.tsx
CHANGED
|
@@ -25,7 +25,7 @@ export const IconClock: ForwardRefExoticComponent<
|
|
|
25
25
|
stroke='currentColor'
|
|
26
26
|
strokeLinecap='round'
|
|
27
27
|
strokeWidth={2}
|
|
28
|
-
d='
|
|
28
|
+
d='M12 8.4v4.05l2.7 2.25m6.3-2.7c0 4.9706-4.0294 9-9 9s-9-4.0294-9-9 4.0294-9 9-9 9 4.0294 9 9Z'
|
|
29
29
|
/>
|
|
30
30
|
</g>,
|
|
31
31
|
<defs>
|
package/react/index.ts
CHANGED
|
@@ -29,6 +29,7 @@ export { IconArrowUp } from './arrow-up'
|
|
|
29
29
|
export { IconArrowsClockwiseRectangleTilt } from './arrows-clockwise-rectangle-tilt'
|
|
30
30
|
export { IconArrowsClockwiseX } from './arrows-clockwise-x'
|
|
31
31
|
export { IconArrowsClockwiseY } from './arrows-clockwise-y'
|
|
32
|
+
export { IconArrowsDownUp } from './arrows-down-up'
|
|
32
33
|
export { IconArrowsHorizontalLinesTopBottom } from './arrows-horizontal-lines-top-bottom'
|
|
33
34
|
export { IconArrowsInSimple } from './arrows-in-simple'
|
|
34
35
|
export { IconArrowsOutCardinal } from './arrows-out-cardinal'
|
|
@@ -36,6 +37,7 @@ export { IconArrowsOutLinesHorizontal } from './arrows-out-lines-horizontal'
|
|
|
36
37
|
export { IconArrowsOutSimple } from './arrows-out-simple'
|
|
37
38
|
export { IconArticle } from './article'
|
|
38
39
|
export { IconAt } from './at'
|
|
40
|
+
export { IconBadge } from './badge'
|
|
39
41
|
export { IconBarrel } from './barrel'
|
|
40
42
|
export { IconBellSlash } from './bell-slash'
|
|
41
43
|
export { IconBellTilt } from './bell-tilt'
|
|
@@ -184,6 +186,7 @@ export { IconMagnet } from './magnet'
|
|
|
184
186
|
export { IconMagnifyingGlassLightning } from './magnifying-glass-lightning'
|
|
185
187
|
export { IconMagnifyingGlass } from './magnifying-glass'
|
|
186
188
|
export { IconMap } from './map'
|
|
189
|
+
export { IconMegaphone } from './megaphone'
|
|
187
190
|
export { IconMicrophoneSlash } from './microphone-slash'
|
|
188
191
|
export { IconMicrophone } from './microphone'
|
|
189
192
|
export { IconMinus } from './minus'
|
|
@@ -191,6 +194,7 @@ export { IconMonitorArrow } from './monitor-arrow'
|
|
|
191
194
|
export { IconMonitorPause } from './monitor-pause'
|
|
192
195
|
export { IconMonitorPlay } from './monitor-play'
|
|
193
196
|
export { IconMonitorStop } from './monitor-stop'
|
|
197
|
+
export { IconMoon } from './moon'
|
|
194
198
|
export { IconMouse } from './mouse'
|
|
195
199
|
export { IconNavigationArrowLines } from './navigation-arrow-lines'
|
|
196
200
|
export { IconNavigationUpLeftFilled } from './navigation-up-left-filled'
|
|
@@ -252,6 +256,7 @@ export { IconRectanglesTwoMinus } from './rectangles-two-minus'
|
|
|
252
256
|
export { IconRectanglesTwoPlus } from './rectangles-two-plus'
|
|
253
257
|
export { IconRectanglesTwoUser } from './rectangles-two-user'
|
|
254
258
|
export { IconRhombus } from './rhombus'
|
|
259
|
+
export { IconRocket } from './rocket'
|
|
255
260
|
export { IconRssRectangle } from './rss-rectangle'
|
|
256
261
|
export { IconScissors } from './scissors'
|
|
257
262
|
export { IconScrollbarXy } from './scrollbar-xy'
|
|
@@ -307,6 +312,7 @@ export { IconStroke3 } from './stroke-3'
|
|
|
307
312
|
export { IconStroke4 } from './stroke-4'
|
|
308
313
|
export { IconStroke5 } from './stroke-5'
|
|
309
314
|
export { IconStroke6 } from './stroke-6'
|
|
315
|
+
export { IconSwitch } from './switch'
|
|
310
316
|
export { IconTag } from './tag'
|
|
311
317
|
export { IconTextAUnderline } from './text-a-underline'
|
|
312
318
|
export { IconTextAlignCenter } from './text-align-center'
|
|
@@ -328,6 +334,8 @@ export { IconThumbsUp } from './thumbs-up'
|
|
|
328
334
|
export { IconTickCircle } from './tick-circle'
|
|
329
335
|
export { IconTicket } from './ticket'
|
|
330
336
|
export { IconTimer } from './timer'
|
|
337
|
+
export { IconToolbar } from './toolbar'
|
|
338
|
+
export { IconTooltip } from './tooltip'
|
|
331
339
|
export { IconTrackpad } from './trackpad'
|
|
332
340
|
export { IconTrapeze } from './trapeze'
|
|
333
341
|
export { IconTrashSimple } from './trash-simple'
|
|
@@ -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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconMegaphone: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
d='m13 6.7778 4 1.111 3.2676.9078a1 1 0 0 1 .7324.9635v4.4798a1 1 0 0 1-.7324.9635l-3.2676.9077m-4-9.3333-8.7324-2.4257c-.6371-.177-1.2676.3022-1.2676.9635v13.3688c0 .6613.6305 1.1405 1.2676.9635l12.7324-3.5368m-4-9.3333v12.2222c0 .5523.4477 1 1 1h2c.5523 0 1-.4477 1-1v-2.8889'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
package/react/moon.tsx
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconMoon: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinejoin='round'
|
|
26
|
+
strokeWidth={2}
|
|
27
|
+
d='M21 13.3757a9.0907 9.0907 0 0 1-2.1328.2523c-5.0076 0-9.067-4.0594-9.067-9.067 0-.5323.0459-1.0539.1339-1.561-3.9784.9592-6.9341 4.5418-6.9341 8.8147 0 5.0075 4.0594 9.0669 9.0669 9.0669 4.4753 0 8.1932-3.2422 8.9331-7.5059Z'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
package/react/rocket.tsx
ADDED
|
@@ -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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconRocket: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
d='m8 10.9999 5 5m-5-5-4-1 4-4 4 1m-4 4 4-4m1 9 1 4.0001 4-4-1-4.0001m-4 4 4-4m0 0 1-1c2-2 3-4 2-7-3-1-5 0-7 2l-1 1m-6 8c-1 1-2 2-2 5 3 0 4-.5 5-2'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
package/react/switch.tsx
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconSwitch: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
d='M7 18c-7 0-7-11 0-11h10c7 0 7 11 0 11h-10Z'
|
|
29
|
+
/>,
|
|
30
|
+
<circle cx={8.5} cy={12.5} r={3.5} fill='currentColor' />
|
|
31
|
+
)
|
|
32
|
+
)
|
|
@@ -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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconToolbar: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
d='M6.5 9h-4.5c-.5523 0-1 .4477-1 1v4c0 .5523.4477 1 1 1h4.5m0-6h5.5m-5.5 0v6m0 0h5.5m0-6v6m0-6h5.5m-5.5 6h5.5m0 0h4.5c.5523 0 1-.4477 1-1v-4c0-.5523-.4477-1-1-1h-4.5m0 6v-6'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -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 type { ForwardRefExoticComponent, RefAttributes } from 'react'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconProps } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconTooltip: ForwardRefExoticComponent<
|
|
12
|
+
IconProps & RefAttributes<SVGSVGElement>
|
|
13
|
+
> = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
|
|
14
|
+
createElement(
|
|
15
|
+
StyledIcon,
|
|
16
|
+
{
|
|
17
|
+
...props,
|
|
18
|
+
size,
|
|
19
|
+
viewBox: '0 0 24 24',
|
|
20
|
+
fill: 'none',
|
|
21
|
+
ref: forwardRef,
|
|
22
|
+
},
|
|
23
|
+
<path
|
|
24
|
+
stroke='currentColor'
|
|
25
|
+
strokeLinecap='round'
|
|
26
|
+
strokeLinejoin='round'
|
|
27
|
+
strokeWidth={2}
|
|
28
|
+
d='M22 14v-8c0-.5523-.4477-1-1-1h-18c-.5523 0-1 .4477-1 1v8c0 .5523.4477 1 1 1h5.5a1 1 0 0 1 .8.4l2.7 3.6 2.7-3.6a1 1 0 0 1 .8-.4h5.5c.5523 0 1-.4477 1-1Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M7 5v14m0 0 4-4m-4 4-4-4m14 4v-14m0 0-4 4m4-4 4 4"/></svg>
|
package/svg/24/badge.svg
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 17c-6 0-6-9 0-9h8c6 0 6 9 0 9h-8Z"/></svg>
|
package/svg/24/clock.svg
CHANGED
|
@@ -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"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><g clip-path="url(#a)"><path stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 8.4v4.05l2.7 2.25m6.3-2.7c0 4.9706-4.0294 9-9 9s-9-4.0294-9-9 4.0294-9 9-9 9 4.0294 9 9Z"/></g><defs><clipPath id="a"><path fill="none" d="M0 0h24v24h-24z"/></clipPath></defs></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m13 6.7778 4 1.111 3.2676.9078a1 1 0 0 1 .7324.9635v4.4798a1 1 0 0 1-.7324.9635l-3.2676.9077m-4-9.3333-8.7324-2.4257c-.6371-.177-1.2676.3022-1.2676.9635v13.3688c0 .6613.6305 1.1405 1.2676.9635l12.7324-3.5368m-4-9.3333v12.2222c0 .5523.4477 1 1 1h2c.5523 0 1-.4477 1-1v-2.8889"/></svg>
|
package/svg/24/moon.svg
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linejoin="round" stroke-width="2" d="M21 13.3757a9.0907 9.0907 0 0 1-2.1328.2523c-5.0076 0-9.067-4.0594-9.067-9.067 0-.5323.0459-1.0539.1339-1.561-3.9784.9592-6.9341 4.5418-6.9341 8.8147 0 5.0075 4.0594 9.0669 9.0669 9.0669 4.4753 0 8.1932-3.2422 8.9331-7.5059Z"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m8 10.9999 5 5m-5-5-4-1 4-4 4 1m-4 4 4-4m1 9 1 4.0001 4-4-1-4.0001m-4 4 4-4m0 0 1-1c2-2 3-4 2-7-3-1-5 0-7 2l-1 1m-6 8c-1 1-2 2-2 5 3 0 4-.5 5-2"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M7 18c-7 0-7-11 0-11h10c7 0 7 11 0 11h-10Z"/><circle cx="8.5" cy="12.5" r="3.5" fill="currentColor"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6.5 9h-4.5c-.5523 0-1 .4477-1 1v4c0 .5523.4477 1 1 1h4.5m0-6h5.5m-5.5 0v6m0 0h5.5m0-6v6m0-6h5.5m-5.5 6h5.5m0 0h4.5c.5523 0 1-.4477 1-1v-4c0-.5523-.4477-1-1-1h-4.5m0 6v-6"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
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 stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M22 14v-8c0-.5523-.4477-1-1-1h-18c-.5523 0-1 .4477-1 1v8c0 .5523.4477 1 1 1h5.5a1 1 0 0 1 .8.4l2.7 3.6 2.7-3.6a1 1 0 0 1 .8-.4h5.5c.5523 0 1-.4477 1-1Z"/></svg>
|
package/svg/meta.json
CHANGED
|
@@ -2894,5 +2894,49 @@
|
|
|
2894
2894
|
"plus",
|
|
2895
2895
|
"square"
|
|
2896
2896
|
]
|
|
2897
|
+
},
|
|
2898
|
+
"tooltip": {
|
|
2899
|
+
"tags": [
|
|
2900
|
+
"tooltip"
|
|
2901
|
+
]
|
|
2902
|
+
},
|
|
2903
|
+
"toolbar": {
|
|
2904
|
+
"tags": [
|
|
2905
|
+
"toolbar"
|
|
2906
|
+
]
|
|
2907
|
+
},
|
|
2908
|
+
"switch": {
|
|
2909
|
+
"tags": [
|
|
2910
|
+
"switch"
|
|
2911
|
+
]
|
|
2912
|
+
},
|
|
2913
|
+
"badge": {
|
|
2914
|
+
"tags": [
|
|
2915
|
+
"badge"
|
|
2916
|
+
]
|
|
2917
|
+
},
|
|
2918
|
+
"moon": {
|
|
2919
|
+
"tags": [
|
|
2920
|
+
"moon"
|
|
2921
|
+
]
|
|
2922
|
+
},
|
|
2923
|
+
"megaphone": {
|
|
2924
|
+
"tags": [
|
|
2925
|
+
"megaphone"
|
|
2926
|
+
]
|
|
2927
|
+
},
|
|
2928
|
+
"rocket": {
|
|
2929
|
+
"tags": [
|
|
2930
|
+
"rocket"
|
|
2931
|
+
]
|
|
2932
|
+
},
|
|
2933
|
+
"arrows-down-up": {
|
|
2934
|
+
"tags": [
|
|
2935
|
+
"arrows down up",
|
|
2936
|
+
"arrows",
|
|
2937
|
+
"down",
|
|
2938
|
+
"up",
|
|
2939
|
+
"sort"
|
|
2940
|
+
]
|
|
2897
2941
|
}
|
|
2898
2942
|
}
|