@mirohq/design-system-icons 0.39.3 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +84 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +82 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +68 -104
- package/package.json +6 -6
- package/react/arrow-bend-up-left.tsx +38 -0
- package/react/dollar-sign-currency.tsx +32 -0
- package/react/index.ts +3 -0
- package/react/plus-box.tsx +32 -0
- package/svg/24/arrow-bend-up-left.svg +2 -0
- package/svg/24/dollar-sign-currency.svg +2 -0
- package/svg/24/plus-box.svg +2 -0
- package/svg/meta.json +35 -10
package/dist/types.d.ts
CHANGED
|
@@ -257,17 +257,17 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<_mirohq_design_sys
|
|
|
257
257
|
readonly body: "Open Sans, sans-serif";
|
|
258
258
|
};
|
|
259
259
|
radii: {
|
|
260
|
+
readonly 0: "0px";
|
|
260
261
|
readonly 25: "2px";
|
|
261
262
|
readonly 50: "4px";
|
|
262
263
|
readonly 75: "6px";
|
|
263
264
|
readonly 100: "8px";
|
|
264
265
|
readonly 200: "16px";
|
|
265
|
-
readonly
|
|
266
|
-
readonly none: "0px";
|
|
266
|
+
readonly round: "999px";
|
|
267
267
|
};
|
|
268
268
|
shadows: {
|
|
269
|
-
50: any;
|
|
270
269
|
100: any;
|
|
270
|
+
50: any;
|
|
271
271
|
"focus-small": any;
|
|
272
272
|
"focus-small-outline": any;
|
|
273
273
|
"focus-large": any;
|
|
@@ -297,48 +297,6 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<_mirohq_design_sys
|
|
|
297
297
|
readonly 1200: "96px";
|
|
298
298
|
readonly 1600: "128px";
|
|
299
299
|
};
|
|
300
|
-
'space-gap': {
|
|
301
|
-
readonly 0: any;
|
|
302
|
-
readonly 50: any;
|
|
303
|
-
readonly 100: any;
|
|
304
|
-
readonly 200: any;
|
|
305
|
-
readonly 300: any;
|
|
306
|
-
};
|
|
307
|
-
'space-inset': {
|
|
308
|
-
readonly 0: any;
|
|
309
|
-
readonly 50: any;
|
|
310
|
-
readonly 100: any;
|
|
311
|
-
readonly 150: any;
|
|
312
|
-
readonly 200: any;
|
|
313
|
-
readonly 300: any;
|
|
314
|
-
readonly 400: any;
|
|
315
|
-
readonly 500: any;
|
|
316
|
-
readonly 600: any;
|
|
317
|
-
readonly 700: any;
|
|
318
|
-
readonly 800: any;
|
|
319
|
-
readonly 1200: any;
|
|
320
|
-
readonly 1600: any;
|
|
321
|
-
};
|
|
322
|
-
'space-offset': {
|
|
323
|
-
readonly 0: any;
|
|
324
|
-
readonly 50: any;
|
|
325
|
-
readonly 100: any;
|
|
326
|
-
readonly 150: any;
|
|
327
|
-
readonly 200: any;
|
|
328
|
-
readonly 300: any;
|
|
329
|
-
readonly 400: any;
|
|
330
|
-
readonly 600: any;
|
|
331
|
-
readonly 800: any;
|
|
332
|
-
readonly 1200: any;
|
|
333
|
-
readonly 1600: any;
|
|
334
|
-
readonly 'stacking-0': any;
|
|
335
|
-
readonly 'stacking-100': any;
|
|
336
|
-
readonly 'stacking-200': any;
|
|
337
|
-
readonly 'stacking-300': any;
|
|
338
|
-
readonly 'stacking-400': any;
|
|
339
|
-
readonly 'stacking-500': any;
|
|
340
|
-
readonly 'stacking-800': any;
|
|
341
|
-
};
|
|
342
300
|
'stroke-width': {
|
|
343
301
|
readonly thin: "1.5px";
|
|
344
302
|
readonly normal: "2px";
|
|
@@ -379,7 +337,7 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<_mirohq_design_sys
|
|
|
379
337
|
readonly borderRightColor: "colors";
|
|
380
338
|
readonly borderRightStyle: "border-styles";
|
|
381
339
|
readonly borderRightWidth: "border-widths";
|
|
382
|
-
readonly borderSpacing: "space
|
|
340
|
+
readonly borderSpacing: "space";
|
|
383
341
|
readonly borderStyle: "border-styles";
|
|
384
342
|
readonly borderTop: "colors";
|
|
385
343
|
readonly borderTopColor: "colors";
|
|
@@ -392,42 +350,42 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<_mirohq_design_sys
|
|
|
392
350
|
readonly boxShadow: "shadows";
|
|
393
351
|
readonly caretColor: "colors";
|
|
394
352
|
readonly color: "colors";
|
|
395
|
-
readonly columnGap: "space
|
|
353
|
+
readonly columnGap: "space";
|
|
396
354
|
readonly columnRuleColor: "colors";
|
|
397
355
|
readonly fill: "colors";
|
|
398
356
|
readonly flexBasis: "sizes";
|
|
399
357
|
readonly fontFamily: "fonts";
|
|
400
358
|
readonly fontSize: "font-sizes";
|
|
401
359
|
readonly fontWeight: "font-weights";
|
|
402
|
-
readonly gap: "space
|
|
403
|
-
readonly gridColumnGap: "space
|
|
404
|
-
readonly gridGap: "space
|
|
405
|
-
readonly gridRowGap: "space
|
|
360
|
+
readonly gap: "space";
|
|
361
|
+
readonly gridColumnGap: "space";
|
|
362
|
+
readonly gridGap: "space";
|
|
363
|
+
readonly gridRowGap: "space";
|
|
406
364
|
readonly gridTemplateColumns: "sizes";
|
|
407
365
|
readonly gridTemplateRows: "sizes";
|
|
408
366
|
readonly height: "sizes";
|
|
409
367
|
readonly inlineSize: "sizes";
|
|
410
|
-
readonly inset: "space
|
|
411
|
-
readonly insetBlock: "space
|
|
412
|
-
readonly insetBlockEnd: "space
|
|
413
|
-
readonly insetBlockStart: "space
|
|
414
|
-
readonly insetInline: "space
|
|
415
|
-
readonly insetInlineEnd: "space
|
|
416
|
-
readonly insetInlineStart: "space
|
|
368
|
+
readonly inset: "space";
|
|
369
|
+
readonly insetBlock: "space";
|
|
370
|
+
readonly insetBlockEnd: "space";
|
|
371
|
+
readonly insetBlockStart: "space";
|
|
372
|
+
readonly insetInline: "space";
|
|
373
|
+
readonly insetInlineEnd: "space";
|
|
374
|
+
readonly insetInlineStart: "space";
|
|
417
375
|
readonly left: "space";
|
|
418
376
|
readonly letterSpacing: "letter-spacings";
|
|
419
377
|
readonly lineHeight: "line-heights";
|
|
420
|
-
readonly margin: "space
|
|
421
|
-
readonly marginBlock: "space
|
|
422
|
-
readonly marginBlockEnd: "space
|
|
423
|
-
readonly marginBlockStart: "space
|
|
424
|
-
readonly marginBottom: "space
|
|
425
|
-
readonly marginInline: "space
|
|
426
|
-
readonly marginInlineEnd: "space
|
|
427
|
-
readonly marginInlineStart: "space
|
|
428
|
-
readonly marginLeft: "space
|
|
429
|
-
readonly marginRight: "space
|
|
430
|
-
readonly marginTop: "space
|
|
378
|
+
readonly margin: "space";
|
|
379
|
+
readonly marginBlock: "space";
|
|
380
|
+
readonly marginBlockEnd: "space";
|
|
381
|
+
readonly marginBlockStart: "space";
|
|
382
|
+
readonly marginBottom: "space";
|
|
383
|
+
readonly marginInline: "space";
|
|
384
|
+
readonly marginInlineEnd: "space";
|
|
385
|
+
readonly marginInlineStart: "space";
|
|
386
|
+
readonly marginLeft: "space";
|
|
387
|
+
readonly marginRight: "space";
|
|
388
|
+
readonly marginTop: "space";
|
|
431
389
|
readonly maxBlockSize: "sizes";
|
|
432
390
|
readonly maxHeight: "sizes";
|
|
433
391
|
readonly maxInlineSize: "sizes";
|
|
@@ -438,41 +396,41 @@ declare const StyledIcon: ForwardRefExoticComponent<Omit<Omit<_mirohq_design_sys
|
|
|
438
396
|
readonly minWidth: "sizes";
|
|
439
397
|
readonly outline: "colors";
|
|
440
398
|
readonly outlineColor: "colors";
|
|
441
|
-
readonly padding: "space
|
|
442
|
-
readonly paddingBlock: "space
|
|
443
|
-
readonly paddingBlockEnd: "space
|
|
444
|
-
readonly paddingBlockStart: "space
|
|
445
|
-
readonly paddingBottom: "space
|
|
446
|
-
readonly paddingInline: "space
|
|
447
|
-
readonly paddingInlineEnd: "space
|
|
448
|
-
readonly paddingInlineStart: "space
|
|
449
|
-
readonly paddingLeft: "space
|
|
450
|
-
readonly paddingRight: "space
|
|
451
|
-
readonly paddingTop: "space
|
|
399
|
+
readonly padding: "space";
|
|
400
|
+
readonly paddingBlock: "space";
|
|
401
|
+
readonly paddingBlockEnd: "space";
|
|
402
|
+
readonly paddingBlockStart: "space";
|
|
403
|
+
readonly paddingBottom: "space";
|
|
404
|
+
readonly paddingInline: "space";
|
|
405
|
+
readonly paddingInlineEnd: "space";
|
|
406
|
+
readonly paddingInlineStart: "space";
|
|
407
|
+
readonly paddingLeft: "space";
|
|
408
|
+
readonly paddingRight: "space";
|
|
409
|
+
readonly paddingTop: "space";
|
|
452
410
|
readonly right: "space";
|
|
453
|
-
readonly rowGap: "space
|
|
454
|
-
readonly scrollMargin: "space
|
|
455
|
-
readonly scrollMarginBlock: "space
|
|
456
|
-
readonly scrollMarginBlockEnd: "space
|
|
457
|
-
readonly scrollMarginBlockStart: "space
|
|
458
|
-
readonly scrollMarginBottom: "space
|
|
459
|
-
readonly scrollMarginInline: "space
|
|
460
|
-
readonly scrollMarginInlineEnd: "space
|
|
461
|
-
readonly scrollMarginInlineStart: "space
|
|
462
|
-
readonly scrollMarginLeft: "space
|
|
463
|
-
readonly scrollMarginRight: "space
|
|
464
|
-
readonly scrollMarginTop: "space
|
|
465
|
-
readonly scrollPadding: "space
|
|
466
|
-
readonly scrollPaddingBlock: "space
|
|
467
|
-
readonly scrollPaddingBlockEnd: "space
|
|
468
|
-
readonly scrollPaddingBlockStart: "space
|
|
469
|
-
readonly scrollPaddingBottom: "space
|
|
470
|
-
readonly scrollPaddingInline: "space
|
|
471
|
-
readonly scrollPaddingInlineEnd: "space
|
|
472
|
-
readonly scrollPaddingInlineStart: "space
|
|
473
|
-
readonly scrollPaddingLeft: "space
|
|
474
|
-
readonly scrollPaddingRight: "space
|
|
475
|
-
readonly scrollPaddingTop: "space
|
|
411
|
+
readonly rowGap: "space";
|
|
412
|
+
readonly scrollMargin: "space";
|
|
413
|
+
readonly scrollMarginBlock: "space";
|
|
414
|
+
readonly scrollMarginBlockEnd: "space";
|
|
415
|
+
readonly scrollMarginBlockStart: "space";
|
|
416
|
+
readonly scrollMarginBottom: "space";
|
|
417
|
+
readonly scrollMarginInline: "space";
|
|
418
|
+
readonly scrollMarginInlineEnd: "space";
|
|
419
|
+
readonly scrollMarginInlineStart: "space";
|
|
420
|
+
readonly scrollMarginLeft: "space";
|
|
421
|
+
readonly scrollMarginRight: "space";
|
|
422
|
+
readonly scrollMarginTop: "space";
|
|
423
|
+
readonly scrollPadding: "space";
|
|
424
|
+
readonly scrollPaddingBlock: "space";
|
|
425
|
+
readonly scrollPaddingBlockEnd: "space";
|
|
426
|
+
readonly scrollPaddingBlockStart: "space";
|
|
427
|
+
readonly scrollPaddingBottom: "space";
|
|
428
|
+
readonly scrollPaddingInline: "space";
|
|
429
|
+
readonly scrollPaddingInlineEnd: "space";
|
|
430
|
+
readonly scrollPaddingInlineStart: "space";
|
|
431
|
+
readonly scrollPaddingLeft: "space";
|
|
432
|
+
readonly scrollPaddingRight: "space";
|
|
433
|
+
readonly scrollPaddingTop: "space";
|
|
476
434
|
readonly stroke: "colors";
|
|
477
435
|
readonly strokeWidth: "stroke-width";
|
|
478
436
|
readonly textDecorationColor: "colors";
|
|
@@ -589,6 +547,8 @@ declare const IconArrowArcLeft: IconComponentType;
|
|
|
589
547
|
|
|
590
548
|
declare const IconArrowArcRight: IconComponentType;
|
|
591
549
|
|
|
550
|
+
declare const IconArrowBendUpLeft: IconComponentType;
|
|
551
|
+
|
|
592
552
|
declare const IconArrowBendUpRight: IconComponentType;
|
|
593
553
|
|
|
594
554
|
declare const IconArrowBoxOut: IconComponentType;
|
|
@@ -841,6 +801,8 @@ declare const IconDistributeHorizontal: IconComponentType;
|
|
|
841
801
|
|
|
842
802
|
declare const IconDistributeVertical: IconComponentType;
|
|
843
803
|
|
|
804
|
+
declare const IconDollarSignCurrency: IconComponentType;
|
|
805
|
+
|
|
844
806
|
declare const IconDotsNine: IconComponentType;
|
|
845
807
|
|
|
846
808
|
declare const IconDotsSixHorizontal: IconComponentType;
|
|
@@ -1101,6 +1063,8 @@ declare const IconPlaybackSpeedCircle: IconComponentType;
|
|
|
1101
1063
|
|
|
1102
1064
|
declare const IconPlug: IconComponentType;
|
|
1103
1065
|
|
|
1066
|
+
declare const IconPlusBox: IconComponentType;
|
|
1067
|
+
|
|
1104
1068
|
declare const IconPlusSquare: IconComponentType;
|
|
1105
1069
|
|
|
1106
1070
|
declare const IconPlusText: IconComponentType;
|
|
@@ -1433,4 +1397,4 @@ declare const IconViewSideLeft: IconComponentType;
|
|
|
1433
1397
|
|
|
1434
1398
|
declare const IconWallet: IconComponentType;
|
|
1435
1399
|
|
|
1436
|
-
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, 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, IconColumnsThree, IconComponentType, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, 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, IconDistributeHorizontal, IconDistributeVertical, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, 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, 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, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, 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, IconUserCog, IconUserCogPlus, IconUserEyeOpen, IconUserLoad, IconUserNumberThree, IconUserPenDashesBottom, IconUserPenLineBottom, IconUserTickDown, IconUsers, IconUsersThree, IconVideoCamera, IconVideoCameraSimple, IconVideoCameraSimpleSlash, IconViewCenter, IconViewSideLeft, IconWallet };
|
|
1400
|
+
export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowArcLeft, IconArrowArcRight, IconArrowBendUpLeft, IconArrowBendUpRight, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowCurvesBottomRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowElbowDownRight, IconArrowFatRight, IconArrowFatUpRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpCircle, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseRectangleTilt, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArrowsDownUp, IconArrowsHorizontalLinesTopBottom, IconArrowsInSimple, IconArrowsOutCardinal, IconArrowsOutLinesHorizontal, IconArrowsOutSimple, IconArrowsSquareCounterClockwiseY, IconArticle, IconAt, IconBadge, IconBarrel, IconBell, IconBellSlash, IconBellTilt, IconBoard, IconBookOpenInfo, IconBookmark, IconBracketCurlyLeft, IconBracketCurlyRight, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconBrush, IconCalendarBlank, IconCamera, IconCard, 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, IconColumnsThree, IconComponentType, IconConeSerpentine, IconConnectionLineElbows, IconConnectionLineStraight, IconCornersThreeEyeOpen, 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, IconDistributeHorizontal, IconDistributeVertical, IconDollarSignCurrency, IconDotsNine, IconDotsSixHorizontal, IconDotsSixVertical, IconDotsThree, IconDotsThreeVertical, IconDotsTwo, IconDownload, IconEnvelope, IconEraser, IconExclamationMarkOctagon, 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, 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, IconMonitorArrow, IconMonitorPause, IconMonitorPlay, IconMonitorStop, IconMoon, IconMouse, IconMusicNote, IconNavigationArrowLines, IconNavigationUpLeftFilled, IconNavigationUpLeftSlash, IconNavigationUpRight, IconNext, IconNodeConnectedDot, IconNodeLinesCurved, IconNodeLinesHorizontal, IconNodeLinesVertical, IconNodePlus, IconNodesConnected, IconNodesConnectionsThree, IconNoteMagnifyingGlass, IconOctagon, IconOffice, IconOrgChart, IconPaintBucket, IconPalette, IconPaperPlaneFilledRight, IconPaperPlaneTilt, IconParallelogram, IconPause, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPenUnderline, IconPentagon, IconPlaceholder, IconPlanet, IconPlay, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusBox, IconPlusSquare, IconPlusText, IconPresentationArrow, IconPresentationEyeOpen, IconPresentationLine, IconPresentationLinesTwo, IconPresentationLink, IconPresentationNumberOne, IconPresentationPlay, IconPresentationPlus, IconPrevious, IconProhibit, IconProps, IconPushPin, IconPushPinFilled, IconQuestionMark, IconQuestionMarkCircle, IconQuotes, IconRectangleArrowUpCenter, IconRectangleDashLines, IconRectangleDotLinePen, IconRectangleFrame2Lines, IconRectanglePlayStack, IconRectanglePortrait, IconRectanglePortraitDash, IconRectanglePortraitDashSquareTopCenter, IconRectanglePortraitDashSquareTopLeft, IconRectanglePortraitFilled, IconRectanglePortraitSquareTopLeft, IconRectangleTick, IconRectangleTriangleBottomCenter, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRectanglesTwoLinesFour, IconRectanglesTwoMinus, IconRectanglesTwoPlus, IconRectanglesTwoUser, IconRhombus, IconRocket, IconRss, IconRssRectangle, IconScissors, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconShuffle, IconSidebarClosed, IconSidebarGlobalClosed, IconSidebarGlobalOpen, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSmiley, IconSmileyChat, IconSmileyPlus, IconSmileySticker, IconSocialAdo, IconSocialDrawio, IconSocialFacebook, IconSocialInstagram, IconSocialJira, IconSocialLinkedin, IconSocialSlack, IconSocialTwitter, IconSocialX, IconSocialYoutube, IconSortAscending, IconSortDescending, IconSparks, IconSparksFilled, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareArrowIn, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareFrame2LinesCircle, IconSquareLineSquareDashed, IconSquareRounded, IconSquareStarScribble, IconSquareTriangleCirclePlus, IconSquaresColumn, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresRow, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStar, IconStarFilled, IconStarHalf, IconStickyCorners, IconStickyEyeClosed, IconStickyEyeOpen, IconStickyNote, IconStickyNoteStack, IconStickyNoteWide, IconStickyNotesTwo, IconStopCircle, IconStroke1, IconStroke2, IconStroke3, IconStroke4, IconStroke5, IconStroke6, IconSwitch, IconTag, IconTasks, IconTextAUnderline, IconTextAa, IconTextAlignCenter, IconTextAlignLeft, IconTextAlignRight, 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, IconUserCog, IconUserCogPlus, 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.40.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"react": "^16.14 || ^17 || ^18"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@mirohq/design-system-
|
|
35
|
-
"@mirohq/design-system-
|
|
36
|
-
"@mirohq/design-system-
|
|
37
|
-
"@mirohq/design-system-
|
|
38
|
-
"@mirohq/design-system-
|
|
34
|
+
"@mirohq/design-system-base-icon": "^0.1.25",
|
|
35
|
+
"@mirohq/design-system-link": "^1.3.20",
|
|
36
|
+
"@mirohq/design-system-primitive": "^1.1.2",
|
|
37
|
+
"@mirohq/design-system-stitches": "^2.6.4",
|
|
38
|
+
"@mirohq/design-system-utils": "^0.15.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@svgr/cli": "^6.5.1",
|
|
@@ -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
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconArrowBendUpLeft: IconComponentType = forwardRef(
|
|
12
|
+
({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
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='var(--svg-stroke-width)'
|
|
28
|
+
d='M20 19c0-7-3-9-7-9h-9m0 0 5-5m-5 5 5 5'
|
|
29
|
+
/>,
|
|
30
|
+
<path
|
|
31
|
+
stroke='currentColor'
|
|
32
|
+
strokeWidth='var(--svg-stroke-width)'
|
|
33
|
+
d='M12 10v.0001'
|
|
34
|
+
/>
|
|
35
|
+
)
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
IconArrowBendUpLeft[iconSymbol] = true
|
|
@@ -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 { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconDollarSignCurrency: IconComponentType = forwardRef(
|
|
12
|
+
({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
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='var(--svg-stroke-width)'
|
|
27
|
+
d='M17 8.6667c0-1.1111-1-3.3334-5-3.3334s-5 2.2223-5 3.3334c0 1.111 1 3.3333 5 3.3333m0 0c4 0 5 2.2222 5 3.3333s-1 3.3334-5 3.3334-5-2.2223-5-3.3334m5-3.3333v-8m0 8v8'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
IconDollarSignCurrency[iconSymbol] = true
|
package/react/index.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { IconAlignRight } from './align-right'
|
|
|
8
8
|
export { IconAlignTop } from './align-top'
|
|
9
9
|
export { IconArrowArcLeft } from './arrow-arc-left'
|
|
10
10
|
export { IconArrowArcRight } from './arrow-arc-right'
|
|
11
|
+
export { IconArrowBendUpLeft } from './arrow-bend-up-left'
|
|
11
12
|
export { IconArrowBendUpRight } from './arrow-bend-up-right'
|
|
12
13
|
export { IconArrowBoxOut } from './arrow-box-out'
|
|
13
14
|
export { IconArrowClockwiseDownRight } from './arrow-clockwise-down-right'
|
|
@@ -134,6 +135,7 @@ export { IconDiagramCardTeam } from './diagram-card-team'
|
|
|
134
135
|
export { IconDiagramCardUser } from './diagram-card-user'
|
|
135
136
|
export { IconDistributeHorizontal } from './distribute-horizontal'
|
|
136
137
|
export { IconDistributeVertical } from './distribute-vertical'
|
|
138
|
+
export { IconDollarSignCurrency } from './dollar-sign-currency'
|
|
137
139
|
export { IconDotsNine } from './dots-nine'
|
|
138
140
|
export { IconDotsSixHorizontal } from './dots-six-horizontal'
|
|
139
141
|
export { IconDotsSixVertical } from './dots-six-vertical'
|
|
@@ -264,6 +266,7 @@ export { IconPlayCircle } from './play-circle'
|
|
|
264
266
|
export { IconPlay } from './play'
|
|
265
267
|
export { IconPlaybackSpeedCircle } from './playback-speed-circle'
|
|
266
268
|
export { IconPlug } from './plug'
|
|
269
|
+
export { IconPlusBox } from './plus-box'
|
|
267
270
|
export { IconPlusSquare } from './plus-square'
|
|
268
271
|
export { IconPlusText } from './plus-text'
|
|
269
272
|
export { IconPlus } from './plus'
|
|
@@ -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 { iconSymbol } from '@mirohq/design-system-base-icon'
|
|
7
|
+
|
|
8
|
+
import { StyledIcon } from '../src/icon'
|
|
9
|
+
import type { IconComponentType } from '../src/icon'
|
|
10
|
+
|
|
11
|
+
export const IconPlusBox: IconComponentType = forwardRef(
|
|
12
|
+
({ size = 'medium', weight = 'normal', ...props }, forwardRef) =>
|
|
13
|
+
createElement(
|
|
14
|
+
StyledIcon,
|
|
15
|
+
{
|
|
16
|
+
...props,
|
|
17
|
+
weight,
|
|
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='var(--svg-stroke-width)'
|
|
27
|
+
d='M17.9988 15v3c0 .5523-.4477 1-1 1h-11c-.5523 0-1-.4477-1-1v-11c0-.5523.4477-1 1-1h5.0012m3.9988 2h6m-2.9988-3v6'
|
|
28
|
+
/>
|
|
29
|
+
)
|
|
30
|
+
)
|
|
31
|
+
|
|
32
|
+
IconPlusBox[iconSymbol] = true
|
|
@@ -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="M20 19c0-7-3-9-7-9h-9m0 0 5-5m-5 5 5 5" style="vector-effect:non-scaling-stroke"/><path stroke="currentColor" stroke-width="2" d="M12 10v.0001" style="vector-effect:non-scaling-stroke"/></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-width="2" d="M17 8.6667c0-1.1111-1-3.3334-5-3.3334s-5 2.2223-5 3.3334c0 1.111 1 3.3333 5 3.3333m0 0c4 0 5 2.2222 5 3.3333s-1 3.3334-5 3.3334-5-2.2223-5-3.3334m5-3.3333v-8m0 8v8" style="vector-effect:non-scaling-stroke"/></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-width="2" d="M17.9988 15v3c0 .5523-.4477 1-1 1h-11c-.5523 0-1-.4477-1-1v-11c0-.5523.4477-1 1-1h5.0012m3.9988 2h6m-2.9988-3v6" style="vector-effect:non-scaling-stroke"/></svg>
|
package/svg/meta.json
CHANGED
|
@@ -3591,15 +3591,6 @@
|
|
|
3591
3591
|
"users"
|
|
3592
3592
|
]
|
|
3593
3593
|
},
|
|
3594
|
-
"music-note": {
|
|
3595
|
-
"tags": [
|
|
3596
|
-
"music",
|
|
3597
|
-
"note",
|
|
3598
|
-
"audio",
|
|
3599
|
-
"sound",
|
|
3600
|
-
"mix"
|
|
3601
|
-
]
|
|
3602
|
-
},
|
|
3603
3594
|
"coins": {
|
|
3604
3595
|
"tags": [
|
|
3605
3596
|
"coin",
|
|
@@ -3634,10 +3625,44 @@
|
|
|
3634
3625
|
},
|
|
3635
3626
|
"tasks": {
|
|
3636
3627
|
"tags": [
|
|
3637
|
-
"
|
|
3628
|
+
"task",
|
|
3638
3629
|
"inbox",
|
|
3639
3630
|
"files",
|
|
3640
3631
|
"drawer"
|
|
3641
3632
|
]
|
|
3633
|
+
},
|
|
3634
|
+
"arrow-bend-up-left": {
|
|
3635
|
+
"tags": [
|
|
3636
|
+
"arrow bend up right",
|
|
3637
|
+
"arrow",
|
|
3638
|
+
"bend",
|
|
3639
|
+
"up",
|
|
3640
|
+
"right",
|
|
3641
|
+
"share"
|
|
3642
|
+
]
|
|
3643
|
+
},
|
|
3644
|
+
"music-note": {
|
|
3645
|
+
"tags": [
|
|
3646
|
+
"music",
|
|
3647
|
+
"note",
|
|
3648
|
+
"audio",
|
|
3649
|
+
"sound",
|
|
3650
|
+
"mix"
|
|
3651
|
+
]
|
|
3652
|
+
},
|
|
3653
|
+
"plus-box": {
|
|
3654
|
+
"tags": [
|
|
3655
|
+
"new",
|
|
3656
|
+
"box",
|
|
3657
|
+
"add",
|
|
3658
|
+
"dashboard"
|
|
3659
|
+
]
|
|
3660
|
+
},
|
|
3661
|
+
"dollar-sign-currency": {
|
|
3662
|
+
"tags": [
|
|
3663
|
+
"currency",
|
|
3664
|
+
"dollar",
|
|
3665
|
+
""
|
|
3666
|
+
]
|
|
3642
3667
|
}
|
|
3643
3668
|
}
|