@mirohq/design-system-icons 0.6.0 → 0.7.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 (72) hide show
  1. package/dist/main.js +842 -1
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +812 -2
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +63 -1
  6. package/package.json +1 -1
  7. package/react/cube.tsx +34 -0
  8. package/react/cursor-text.tsx +34 -0
  9. package/react/curve-square-circle-arrow.tsx +34 -0
  10. package/react/eraser.tsx +34 -0
  11. package/react/eyedropper.tsx +31 -0
  12. package/react/highlighter-underline.tsx +25 -0
  13. package/react/highlighter.tsx +34 -0
  14. package/react/index.ts +31 -0
  15. package/react/lasso.tsx +34 -0
  16. package/react/line-curved.tsx +34 -0
  17. package/react/line-dashed.tsx +34 -0
  18. package/react/line-dotted.tsx +28 -0
  19. package/react/line-horizontal.tsx +34 -0
  20. package/react/line-orthogonal.tsx +34 -0
  21. package/react/line-straight.tsx +34 -0
  22. package/react/list-bullets.tsx +31 -0
  23. package/react/list-numbers.tsx +34 -0
  24. package/react/minus.tsx +1 -1
  25. package/react/pen-tip.tsx +34 -0
  26. package/react/pen.tsx +34 -0
  27. package/react/plus-text.tsx +34 -0
  28. package/react/prohibit.tsx +32 -0
  29. package/react/text-a-underline.tsx +25 -0
  30. package/react/text-align-center.tsx +34 -0
  31. package/react/text-align-left.tsx +34 -0
  32. package/react/text-b-bold-italic-underlined.tsx +24 -0
  33. package/react/text-b-bold.tsx +34 -0
  34. package/react/text-i-italic.tsx +33 -0
  35. package/react/text-indent.tsx +34 -0
  36. package/react/text-lines-three.tsx +34 -0
  37. package/react/text-s-strikethrough.tsx +34 -0
  38. package/react/text-styles.tsx +33 -0
  39. package/react/text-u-underlined.tsx +34 -0
  40. package/svg/24/cube.svg +1 -0
  41. package/svg/24/cursor-text.svg +1 -0
  42. package/svg/24/curve-square-circle-arrow.svg +1 -0
  43. package/svg/24/eraser.svg +1 -0
  44. package/svg/24/eyedropper.svg +1 -0
  45. package/svg/24/highlighter-underline.svg +1 -0
  46. package/svg/24/highlighter.svg +1 -0
  47. package/svg/24/lasso.svg +1 -0
  48. package/svg/24/line-curved.svg +1 -0
  49. package/svg/24/line-dashed.svg +1 -0
  50. package/svg/24/line-dotted.svg +1 -0
  51. package/svg/24/line-horizontal.svg +1 -0
  52. package/svg/24/line-orthogonal.svg +1 -0
  53. package/svg/24/line-straight.svg +1 -0
  54. package/svg/24/list-bullets.svg +1 -0
  55. package/svg/24/list-numbers.svg +1 -0
  56. package/svg/24/minus.svg +1 -1
  57. package/svg/24/pen-tip.svg +1 -0
  58. package/svg/24/pen.svg +1 -0
  59. package/svg/24/plus-text.svg +1 -0
  60. package/svg/24/prohibit.svg +1 -0
  61. package/svg/24/text-a-underline.svg +1 -0
  62. package/svg/24/text-align-center.svg +1 -0
  63. package/svg/24/text-align-left.svg +1 -0
  64. package/svg/24/text-b-bold-italic-underlined.svg +1 -0
  65. package/svg/24/text-b-bold.svg +1 -0
  66. package/svg/24/text-i-italic.svg +1 -0
  67. package/svg/24/text-indent.svg +1 -0
  68. package/svg/24/text-lines-three.svg +1 -0
  69. package/svg/24/text-s-strikethrough.svg +1 -0
  70. package/svg/24/text-styles.svg +1 -0
  71. package/svg/24/text-u-underlined.svg +1 -0
  72. package/svg/meta.json +225 -0
package/dist/types.d.ts CHANGED
@@ -558,18 +558,28 @@ declare const IconCrossCircle: ForwardRefExoticComponent<IconProps & RefAttribut
558
558
 
559
559
  declare const IconCross: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
560
560
 
561
+ declare const IconCube: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
562
+
561
563
  declare const IconCursorFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
562
564
 
565
+ declare const IconCursorText: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
566
+
563
567
  declare const IconCursor: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
564
568
 
569
+ declare const IconCurveSquareCircleArrow: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
570
+
565
571
  declare const IconDistributeHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
566
572
 
567
573
  declare const IconDistributeVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
568
574
 
569
575
  declare const IconEnvelope: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
570
576
 
577
+ declare const IconEraser: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
578
+
571
579
  declare const IconExclamationPointCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
572
580
 
581
+ declare const IconEyedropper: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
582
+
573
583
  declare const IconFactoryHouse: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
574
584
 
575
585
  declare const IconFactory: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -590,6 +600,10 @@ declare const IconHandFilled: ForwardRefExoticComponent<IconProps & RefAttribute
590
600
 
591
601
  declare const IconHand: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
592
602
 
603
+ declare const IconHighlighterUnderline: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
604
+
605
+ declare const IconHighlighter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
606
+
593
607
  declare const IconHouse: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
594
608
 
595
609
  declare const IconImage: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -604,14 +618,28 @@ declare const IconKeycap: ForwardRefExoticComponent<IconProps & RefAttributes<SV
604
618
 
605
619
  declare const IconLaptop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
606
620
 
621
+ declare const IconLasso: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
622
+
607
623
  declare const IconLayout: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
608
624
 
609
625
  declare const IconLifesaver: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
610
626
 
611
627
  declare const IconLightning: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
612
628
 
629
+ declare const IconLineCurved: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
630
+
631
+ declare const IconLineDashed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
632
+
613
633
  declare const IconLineDiagonal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
614
634
 
635
+ declare const IconLineDotted: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
636
+
637
+ declare const IconLineHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
638
+
639
+ declare const IconLineOrthogonal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
640
+
641
+ declare const IconLineStraight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
642
+
615
643
  declare const IconLinesThreeHorizontalLineVerticalCenter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
616
644
 
617
645
  declare const IconLinesThreeHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -620,6 +648,10 @@ declare const IconLinesThreeVertical: ForwardRefExoticComponent<IconProps & RefA
620
648
 
621
649
  declare const IconLink: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
622
650
 
651
+ declare const IconListBullets: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
652
+
653
+ declare const IconListNumbers: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
654
+
623
655
  declare const IconLockClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
624
656
 
625
657
  declare const IconLockOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -644,6 +676,10 @@ declare const IconPauseCircle: ForwardRefExoticComponent<IconProps & RefAttribut
644
676
 
645
677
  declare const IconPdf: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
646
678
 
679
+ declare const IconPenTip: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
680
+
681
+ declare const IconPen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
682
+
647
683
  declare const IconPlaceholder: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
648
684
 
649
685
  declare const IconPlayCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -652,8 +688,12 @@ declare const IconPlaybackSpeedCircle: ForwardRefExoticComponent<IconProps & Ref
652
688
 
653
689
  declare const IconPlug: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
654
690
 
691
+ declare const IconPlusText: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
692
+
655
693
  declare const IconPlus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
656
694
 
695
+ declare const IconProhibit: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
696
+
657
697
  declare const IconPushPin: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
658
698
 
659
699
  declare const IconQuestionMarkCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -734,14 +774,36 @@ declare const IconStopCircle: ForwardRefExoticComponent<IconProps & RefAttribute
734
774
 
735
775
  declare const IconTag: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
736
776
 
777
+ declare const IconTextAUnderline: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
778
+
779
+ declare const IconTextAlignCenter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
780
+
781
+ declare const IconTextAlignLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
782
+
783
+ declare const IconTextBBoldItalicUnderlined: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
784
+
785
+ declare const IconTextBBold: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
786
+
737
787
  declare const IconTextHOne: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
738
788
 
739
789
  declare const IconTextHThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
740
790
 
741
791
  declare const IconTextHTwo: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
742
792
 
793
+ declare const IconTextIItalic: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
794
+
795
+ declare const IconTextIndent: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
796
+
797
+ declare const IconTextLinesThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
798
+
799
+ declare const IconTextSStrikethrough: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
800
+
801
+ declare const IconTextStyles: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
802
+
743
803
  declare const IconTextT: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
744
804
 
805
+ declare const IconTextUUnderlined: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
806
+
745
807
  declare const IconThumbsUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
746
808
 
747
809
  declare const IconTicket: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -770,4 +832,4 @@ declare const IconViewSideLeft: ForwardRefExoticComponent<IconProps & RefAttribu
770
832
 
771
833
  declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
772
834
 
773
- export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBookmark, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCursor, IconCursorFilled, IconDistributeHorizontal, IconDistributeVertical, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLayout, IconLifesaver, IconLightning, IconLineDiagonal, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLink, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconProps, IconPushPin, IconQuestionMarkCircle, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStickyNote, IconStopCircle, IconTag, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextT, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconViewCenter, IconViewSideLeft, IconWallet };
835
+ export { IconAddLineBottom, IconAddLineRight, IconAlignBottom, IconAlignCenterHorizontal, IconAlignCenterVertical, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, IconBookmark, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCalendarBlank, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClock, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconClockOvertime, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCube, IconCursor, IconCursorFilled, IconCursorText, IconCurveSquareCircleArrow, IconDistributeHorizontal, IconDistributeVertical, IconEnvelope, IconEraser, IconExclamationPointCircle, IconEyedropper, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconGridFour, IconGridSix, IconHand, IconHandFilled, IconHighlighter, IconHighlighterUnderline, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLasso, IconLayout, IconLifesaver, IconLightning, IconLineCurved, IconLineDashed, IconLineDiagonal, IconLineDotted, IconLineHorizontal, IconLineOrthogonal, IconLineStraight, IconLinesThreeHorizontal, IconLinesThreeHorizontalLineVerticalCenter, IconLinesThreeVertical, IconLink, IconListBullets, IconListNumbers, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPen, IconPenTip, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconPlusText, IconProhibit, IconProps, IconPushPin, IconQuestionMarkCircle, IconRectanglesThreeAligned, IconRectanglesThreeFree, IconRectanglesThreeOverlap, IconRectanglesTwoLine, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSplitVertical, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareLineSquareDashed, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresGroup, IconSquaresMerge, IconSquaresThree, IconSquaresTwoOverlap, IconSquaresUngroup, IconSquaresUnmerge, IconStack, IconStickyNote, IconStopCircle, IconTag, IconTextAUnderline, IconTextAlignCenter, IconTextAlignLeft, IconTextBBold, IconTextBBoldItalicUnderlined, IconTextHOne, IconTextHThree, IconTextHTwo, IconTextIItalic, IconTextIndent, IconTextLinesThree, IconTextSStrikethrough, IconTextStyles, IconTextT, IconTextUUnderlined, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconViewCenter, IconViewSideLeft, IconWallet };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mirohq/design-system-icons",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "",
5
5
  "author": "Miro",
6
6
  "source": "src/index.ts",
package/react/cube.tsx ADDED
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconCube: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='m21 7-9-3-9 3m18 0-9 3m9-3v11l-9 3m0-11L3 7m9 3v11M3 7v11l9 3'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconCursorText: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='M7 5h3a2 2 0 0 1 2 2m0 0v10m0-10a2 2 0 0 1 2-2h3m-5 12a2 2 0 0 1-2 2H7m5-2a2 2 0 0 0 2 2h3'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconCurveSquareCircleArrow: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='M11 6h-1a4 4 0 0 0-4 4v1m8 7h8m0 0-2-3m2 3-2 3m-10-3a4 4 0 1 1-8 0 4 4 0 0 1 8 0Zm6-16h4a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Z'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconEraser: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='M18 20h-6m0 0H6.828a2 2 0 0 1-1.414-.586l-2-2a2 2 0 0 1 0-2.828L11 7m1 13 6-6m0 0 2.586-2.586a2 2 0 0 0 0-2.828l-4.172-4.172a2 2 0 0 0-2.828 0L11 7m7 7-7-7'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,31 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconEyedropper: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <path
20
+ stroke='currentColor'
21
+ strokeLinecap='round'
22
+ strokeLinejoin='round'
23
+ strokeWidth={2}
24
+ d='m12 6 1.5 1.5M18 12l-1.5-1.5m-3-3-10 10L3 21l3.5-.5 10-10m-3-3 3 3'
25
+ />,
26
+ <path
27
+ fill='currentColor'
28
+ d='m13 7 3-3a2.828 2.828 0 1 1 4 4l-3 3-4-4ZM4 17.5 6.5 20H4v-2.5Z'
29
+ />
30
+ )
31
+ )
@@ -0,0 +1,25 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconHighlighterUnderline: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <rect width={18} height={2} x={3} y={20} fill='currentColor' rx={0.5} />,
20
+ <path
21
+ fill='currentColor'
22
+ d='M9 17v-1h-.414l-.293.293L9 17Zm2 0v1h.42l.294-.3L11 17Zm1-10-.707-.707L12 7Zm-5.5 5.5-.707-.707-.214.214-.06.297.981.196ZM6 15l.707.707.214-.214.06-.297L6 15Zm-2 2-.707-.707-.293.293V17h1Zm0 1H3v1h1v-1Zm4 0v1h.414l.293-.293L8 18ZM21 7l.69.724a1 1 0 0 0 .017-1.431L21 7Zm-4.5-4.5.707-.707a1 1 0 0 0-1.414 0l.707.707ZM9.25 9.75l.707.707-.707-.707ZM9 18h2v-2H9v2Zm-3.48-5.696-.5 2.5 1.96.392.5-2.5-1.96-.392ZM3 17v1h2v-1H3Zm1 2h4v-2H4v2Zm4.707-.293 1-1-1.414-1.414-1 1 1.414 1.414Zm13-12.414-4.5-4.5-1.414 1.414 4.5 4.5 1.414-1.414Zm-1.397-.017-3 2.857 1.38 1.448 3-2.857-1.38-1.448Zm-3.024 2.881-7 7.143 1.428 1.4 7-7.143-1.428-1.4Zm-4.579-1.45 1.5-1.5-1.414-1.414-1.5 1.5 1.414 1.414Zm1.5-1.5 3-3-1.414-1.414-3 3 1.414 1.414Zm4.489 2.932-4.5-4.357-1.392 1.436 4.5 4.358 1.392-1.437Zm-7.403-2.846-2.75 2.75 1.414 1.414 2.75-2.75-1.414-1.414Zm-2.75 2.75-2.75 2.75 1.414 1.414 2.75-2.75-1.414-1.414Zm-3.25 5.25-1 1 1.414 1.414 1-1-1.414-1.414Zm-1 1-1 1 1.414 1.414 1-1-1.414-1.414Z'
23
+ />
24
+ )
25
+ )
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconHighlighter: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='m3 22 .89-7.124A1 1 0 0 1 4.883 14H6m15 8-.89-7.124a1 1 0 0 0-.993-.876H18M6 14v-3a1 1 0 0 1 1-1h1m-2 4h12m0 0v-3a1 1 0 0 0-1-1h-1m-8 0V4.78a1 1 0 0 1 .757-.97l6-1.5A1 1 0 0 1 16 3.28V10m-8 0h8'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
package/react/index.ts CHANGED
@@ -58,12 +58,17 @@ export { IconCreditCard } from './credit-card'
58
58
  export { IconCrop } from './crop'
59
59
  export { IconCrossCircle } from './cross-circle'
60
60
  export { IconCross } from './cross'
61
+ export { IconCube } from './cube'
61
62
  export { IconCursorFilled } from './cursor-filled'
63
+ export { IconCursorText } from './cursor-text'
62
64
  export { IconCursor } from './cursor'
65
+ export { IconCurveSquareCircleArrow } from './curve-square-circle-arrow'
63
66
  export { IconDistributeHorizontal } from './distribute-horizontal'
64
67
  export { IconDistributeVertical } from './distribute-vertical'
65
68
  export { IconEnvelope } from './envelope'
69
+ export { IconEraser } from './eraser'
66
70
  export { IconExclamationPointCircle } from './exclamation-point-circle'
71
+ export { IconEyedropper } from './eyedropper'
67
72
  export { IconFactoryHouse } from './factory-house'
68
73
  export { IconFactory } from './factory'
69
74
  export { IconFunnel } from './funnel'
@@ -74,6 +79,8 @@ export { IconGridFour } from './grid-four'
74
79
  export { IconGridSix } from './grid-six'
75
80
  export { IconHandFilled } from './hand-filled'
76
81
  export { IconHand } from './hand'
82
+ export { IconHighlighterUnderline } from './highlighter-underline'
83
+ export { IconHighlighter } from './highlighter'
77
84
  export { IconHouse } from './house'
78
85
  export { IconImage } from './image'
79
86
  export { IconInformationMarkCircle } from './information-mark-circle'
@@ -81,14 +88,23 @@ export { IconKanban } from './kanban'
81
88
  export { IconKey } from './key'
82
89
  export { IconKeycap } from './keycap'
83
90
  export { IconLaptop } from './laptop'
91
+ export { IconLasso } from './lasso'
84
92
  export { IconLayout } from './layout'
85
93
  export { IconLifesaver } from './lifesaver'
86
94
  export { IconLightning } from './lightning'
95
+ export { IconLineCurved } from './line-curved'
96
+ export { IconLineDashed } from './line-dashed'
87
97
  export { IconLineDiagonal } from './line-diagonal'
98
+ export { IconLineDotted } from './line-dotted'
99
+ export { IconLineHorizontal } from './line-horizontal'
100
+ export { IconLineOrthogonal } from './line-orthogonal'
101
+ export { IconLineStraight } from './line-straight'
88
102
  export { IconLinesThreeHorizontalLineVerticalCenter } from './lines-three-horizontal-line-vertical-center'
89
103
  export { IconLinesThreeHorizontal } from './lines-three-horizontal'
90
104
  export { IconLinesThreeVertical } from './lines-three-vertical'
91
105
  export { IconLink } from './link'
106
+ export { IconListBullets } from './list-bullets'
107
+ export { IconListNumbers } from './list-numbers'
92
108
  export { IconLockClosed } from './lock-closed'
93
109
  export { IconLockOpen } from './lock-open'
94
110
  export { IconMagnet } from './magnet'
@@ -101,11 +117,15 @@ export { IconMouse } from './mouse'
101
117
  export { IconParallelogram } from './parallelogram'
102
118
  export { IconPauseCircle } from './pause-circle'
103
119
  export { IconPdf } from './pdf'
120
+ export { IconPenTip } from './pen-tip'
121
+ export { IconPen } from './pen'
104
122
  export { IconPlaceholder } from './placeholder'
105
123
  export { IconPlayCircle } from './play-circle'
106
124
  export { IconPlaybackSpeedCircle } from './playback-speed-circle'
107
125
  export { IconPlug } from './plug'
126
+ export { IconPlusText } from './plus-text'
108
127
  export { IconPlus } from './plus'
128
+ export { IconProhibit } from './prohibit'
109
129
  export { IconPushPin } from './push-pin'
110
130
  export { IconQuestionMarkCircle } from './question-mark-circle'
111
131
  export { IconRectanglesThreeAligned } from './rectangles-three-aligned'
@@ -146,10 +166,21 @@ export { IconStack } from './stack'
146
166
  export { IconStickyNote } from './sticky-note'
147
167
  export { IconStopCircle } from './stop-circle'
148
168
  export { IconTag } from './tag'
169
+ export { IconTextAUnderline } from './text-a-underline'
170
+ export { IconTextAlignCenter } from './text-align-center'
171
+ export { IconTextAlignLeft } from './text-align-left'
172
+ export { IconTextBBoldItalicUnderlined } from './text-b-bold-italic-underlined'
173
+ export { IconTextBBold } from './text-b-bold'
149
174
  export { IconTextHOne } from './text-h-one'
150
175
  export { IconTextHThree } from './text-h-three'
151
176
  export { IconTextHTwo } from './text-h-two'
177
+ export { IconTextIItalic } from './text-i-italic'
178
+ export { IconTextIndent } from './text-indent'
179
+ export { IconTextLinesThree } from './text-lines-three'
180
+ export { IconTextSStrikethrough } from './text-s-strikethrough'
181
+ export { IconTextStyles } from './text-styles'
152
182
  export { IconTextT } from './text-t'
183
+ export { IconTextUUnderlined } from './text-u-underlined'
153
184
  export { IconThumbsUp } from './thumbs-up'
154
185
  export { IconTicket } from './ticket'
155
186
  export { IconTimer } from './timer'
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconLasso: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeDasharray='1 3'
23
+ strokeLinecap='round'
24
+ strokeWidth={2}
25
+ d='M10.5 21.5s1.471-1.096 3-2.5c2.394-2.198 5.263-2.253 7-5 1.29-2.041 1.385-3.116 1-5.5-.363-2.248-.697-3.609-2.5-5-2.063-1.591-5.396-1.075-8-1-3.335.096-4.711 1.072-7 3.5-1.498 1.588-1.157 1.823-1 4 .151 2.107.356 2.674 2 4 1.779 1.435 5.5 1.333 8 .5s4-4.5 4-4.5'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconLineCurved: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='M2 12s2.767-2.553 5-3c4.466-.893 5.534 6.893 10 6 2.233-.447 5-3 5-3'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconLineDashed: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='M2 12h4m4 0h4m4 0h4'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,28 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconLineDotted: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g fill='currentColor' clipPath='url(#a)'>
20
+ <path d='M3 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z' />
21
+ </g>,
22
+ <defs>
23
+ <clipPath id='a'>
24
+ <path d='M0 0h24v24H0z' />
25
+ </clipPath>
26
+ </defs>
27
+ )
28
+ )
@@ -0,0 +1,34 @@
1
+ import React, { forwardRef, createElement } from 'react'
2
+ import type { ForwardRefExoticComponent, RefAttributes } from 'react'
3
+
4
+ import { StyledIcon } from '../src/icon'
5
+ import type { IconProps } from '../src/icon'
6
+
7
+ export const IconLineHorizontal: ForwardRefExoticComponent<
8
+ IconProps & RefAttributes<SVGSVGElement>
9
+ > = forwardRef(({ size = 'medium', ...props }, forwardRef) =>
10
+ createElement(
11
+ StyledIcon,
12
+ {
13
+ ...props,
14
+ size,
15
+ viewBox: '0 0 24 24',
16
+ fill: 'none',
17
+ ref: forwardRef,
18
+ },
19
+ <g clipPath='url(#a)'>
20
+ <path
21
+ stroke='currentColor'
22
+ strokeLinecap='round'
23
+ strokeLinejoin='round'
24
+ strokeWidth={2}
25
+ d='M3 12h18'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )