@mirohq/design-system-icons 0.5.0 → 0.6.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 (68) hide show
  1. package/dist/main.js +842 -12
  2. package/dist/main.js.map +1 -1
  3. package/dist/module.js +813 -13
  4. package/dist/module.js.map +1 -1
  5. package/dist/types.d.ts +61 -1
  6. package/package.json +1 -1
  7. package/react/add-line-bottom.tsx +33 -0
  8. package/react/add-line-right.tsx +33 -0
  9. package/react/align-center-horizontal.tsx +32 -0
  10. package/react/align-center-vertical.tsx +32 -0
  11. package/react/bookmark.tsx +34 -0
  12. package/react/distribute-horizontal.tsx +27 -0
  13. package/react/distribute-vertical.tsx +35 -0
  14. package/react/grid-four.tsx +34 -0
  15. package/react/grid-six.tsx +34 -0
  16. package/react/index.ts +30 -0
  17. package/react/layout.tsx +34 -0
  18. package/react/lines-three-horizontal-line-vertical-center.tsx +34 -0
  19. package/react/lines-three-horizontal.tsx +33 -0
  20. package/react/lines-three-vertical.tsx +33 -0
  21. package/react/rectangles-three-aligned.tsx +34 -0
  22. package/react/rectangles-three-free.tsx +34 -0
  23. package/react/rectangles-three-overlap.tsx +34 -0
  24. package/react/rectangles-two-line.tsx +34 -0
  25. package/react/split-vertical.tsx +34 -0
  26. package/react/square-line-square-dashed.tsx +34 -0
  27. package/react/squares-group.tsx +32 -0
  28. package/react/squares-merge.tsx +31 -0
  29. package/react/squares-two-overlap.tsx +34 -0
  30. package/react/squares-ungroup.tsx +31 -0
  31. package/react/squares-unmerge.tsx +34 -0
  32. package/react/stack.tsx +34 -0
  33. package/react/text-h-one.tsx +34 -0
  34. package/react/text-h-three.tsx +34 -0
  35. package/react/text-h-two.tsx +34 -0
  36. package/react/view-center.tsx +28 -0
  37. package/react/view-side-left.tsx +28 -0
  38. package/svg/24/add-line-bottom.svg +1 -0
  39. package/svg/24/add-line-right.svg +1 -0
  40. package/svg/24/align-center-horizontal.svg +1 -0
  41. package/svg/24/align-center-vertical.svg +1 -0
  42. package/svg/24/bookmark.svg +1 -0
  43. package/svg/24/distribute-horizontal.svg +1 -0
  44. package/svg/24/distribute-vertical.svg +1 -0
  45. package/svg/24/grid-four.svg +1 -0
  46. package/svg/24/grid-six.svg +1 -0
  47. package/svg/24/layout.svg +1 -0
  48. package/svg/24/lines-three-horizontal-line-vertical-center.svg +1 -0
  49. package/svg/24/lines-three-horizontal.svg +1 -0
  50. package/svg/24/lines-three-vertical.svg +1 -0
  51. package/svg/24/rectangles-three-aligned.svg +1 -0
  52. package/svg/24/rectangles-three-free.svg +1 -0
  53. package/svg/24/rectangles-three-overlap.svg +1 -0
  54. package/svg/24/rectangles-two-line.svg +1 -0
  55. package/svg/24/split-vertical.svg +1 -0
  56. package/svg/24/square-line-square-dashed.svg +1 -0
  57. package/svg/24/squares-group.svg +1 -0
  58. package/svg/24/squares-merge.svg +1 -0
  59. package/svg/24/squares-two-overlap.svg +1 -0
  60. package/svg/24/squares-ungroup.svg +1 -0
  61. package/svg/24/squares-unmerge.svg +1 -0
  62. package/svg/24/stack.svg +1 -0
  63. package/svg/24/text-h-one.svg +1 -0
  64. package/svg/24/text-h-three.svg +1 -0
  65. package/svg/24/text-h-two.svg +1 -0
  66. package/svg/24/view-center.svg +1 -0
  67. package/svg/24/view-side-left.svg +1 -0
  68. package/svg/meta.json +265 -0
package/dist/types.d.ts CHANGED
@@ -438,8 +438,16 @@ interface IconProps extends StyledIconProps {
438
438
  fr?: string | number | undefined;
439
439
  }
440
440
 
441
+ declare const IconAddLineBottom: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
442
+
443
+ declare const IconAddLineRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
444
+
441
445
  declare const IconAlignBottom: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
442
446
 
447
+ declare const IconAlignCenterHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
448
+
449
+ declare const IconAlignCenterVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
450
+
443
451
  declare const IconAlignLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
444
452
 
445
453
  declare const IconAlignRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -488,6 +496,8 @@ declare const IconBellTilt: ForwardRefExoticComponent<IconProps & RefAttributes<
488
496
 
489
497
  declare const IconBell: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
490
498
 
499
+ declare const IconBookmark: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
500
+
491
501
  declare const IconBracketsAngleSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
492
502
 
493
503
  declare const IconBracketsCurlyCirclesThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -552,6 +562,10 @@ declare const IconCursorFilled: ForwardRefExoticComponent<IconProps & RefAttribu
552
562
 
553
563
  declare const IconCursor: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
554
564
 
565
+ declare const IconDistributeHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
566
+
567
+ declare const IconDistributeVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
568
+
555
569
  declare const IconEnvelope: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
556
570
 
557
571
  declare const IconExclamationPointCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -568,6 +582,10 @@ declare const IconGlobe: ForwardRefExoticComponent<IconProps & RefAttributes<SVG
568
582
 
569
583
  declare const IconGraduationCap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
570
584
 
585
+ declare const IconGridFour: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
586
+
587
+ declare const IconGridSix: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
588
+
571
589
  declare const IconHandFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
572
590
 
573
591
  declare const IconHand: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -586,12 +604,20 @@ declare const IconKeycap: ForwardRefExoticComponent<IconProps & RefAttributes<SV
586
604
 
587
605
  declare const IconLaptop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
588
606
 
607
+ declare const IconLayout: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
608
+
589
609
  declare const IconLifesaver: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
590
610
 
591
611
  declare const IconLightning: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
592
612
 
593
613
  declare const IconLineDiagonal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
594
614
 
615
+ declare const IconLinesThreeHorizontalLineVerticalCenter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
616
+
617
+ declare const IconLinesThreeHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
618
+
619
+ declare const IconLinesThreeVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
620
+
595
621
  declare const IconLink: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
596
622
 
597
623
  declare const IconLockClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -632,6 +658,14 @@ declare const IconPushPin: ForwardRefExoticComponent<IconProps & RefAttributes<S
632
658
 
633
659
  declare const IconQuestionMarkCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
634
660
 
661
+ declare const IconRectanglesThreeAligned: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
662
+
663
+ declare const IconRectanglesThreeFree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
664
+
665
+ declare const IconRectanglesThreeOverlap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
666
+
667
+ declare const IconRectanglesTwoLine: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
668
+
635
669
  declare const IconRhombus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
636
670
 
637
671
  declare const IconScrollbarXy: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -664,10 +698,14 @@ declare const IconSpeakerCross: ForwardRefExoticComponent<IconProps & RefAttribu
664
698
 
665
699
  declare const IconSpeakerHigh: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
666
700
 
701
+ declare const IconSplitVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
702
+
667
703
  declare const IconSquareBracketsAngleSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
668
704
 
669
705
  declare const IconSquareCirclesTwo: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
670
706
 
707
+ declare const IconSquareLineSquareDashed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
708
+
671
709
  declare const IconSquareRounded: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
672
710
 
673
711
  declare const IconSquareTriangleCirclePlus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -676,14 +714,32 @@ declare const IconSquare: ForwardRefExoticComponent<IconProps & RefAttributes<SV
676
714
 
677
715
  declare const IconSquaresFour: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
678
716
 
717
+ declare const IconSquaresGroup: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
718
+
719
+ declare const IconSquaresMerge: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
720
+
679
721
  declare const IconSquaresThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
680
722
 
723
+ declare const IconSquaresTwoOverlap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
724
+
725
+ declare const IconSquaresUngroup: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
726
+
727
+ declare const IconSquaresUnmerge: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
728
+
729
+ declare const IconStack: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
730
+
681
731
  declare const IconStickyNote: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
682
732
 
683
733
  declare const IconStopCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
684
734
 
685
735
  declare const IconTag: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
686
736
 
737
+ declare const IconTextHOne: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
738
+
739
+ declare const IconTextHThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
740
+
741
+ declare const IconTextHTwo: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
742
+
687
743
  declare const IconTextT: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
688
744
 
689
745
  declare const IconThumbsUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
@@ -708,6 +764,10 @@ declare const IconUser: ForwardRefExoticComponent<IconProps & RefAttributes<SVGS
708
764
 
709
765
  declare const IconUsers: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
710
766
 
767
+ declare const IconViewCenter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
768
+
769
+ declare const IconViewSideLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
770
+
711
771
  declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
712
772
 
713
- export { IconAlignBottom, IconAlignLeft, IconAlignRight, IconAlignTop, IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBell, IconBellSlash, IconBellTilt, 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, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconGraduationCap, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLifesaver, IconLightning, IconLineDiagonal, IconLink, IconLockClosed, IconLockOpen, IconMagnet, IconMagnifyingGlass, IconMap, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconProps, IconPushPin, IconQuestionMarkCircle, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSidebarClosed, IconSidebarOpen, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresThree, IconStickyNote, IconStopCircle, IconTag, IconTextT, IconThumbsUp, IconTicket, IconTimer, IconTrackpad, IconTrash, IconTrashSimple, IconTriangle, IconTrident, IconUser, IconUserAdd, IconUsers, IconWallet };
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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mirohq/design-system-icons",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "",
5
5
  "author": "Miro",
6
6
  "source": "src/index.ts",
@@ -0,0 +1,33 @@
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 IconAddLineBottom: 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
+ strokeWidth={2}
24
+ d='M21 5H3m13 10h-4m0 0H8m4 0v-4m0 4v4'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,33 @@
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 IconAddLineRight: 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
+ strokeWidth={2}
24
+ d='M5 3v18M15 8v4m0 0v4m0-4h-4m4 0h4'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )
@@ -0,0 +1,32 @@
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 IconAlignCenterHorizontal: 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
+ strokeMiterlimit={1.414}
24
+ strokeWidth={2}
25
+ d='M12 3v18'
26
+ />,
27
+ <path
28
+ fill='currentColor'
29
+ d='M19.5 7a1.5 1.5 0 0 1 0 3h-15a1.5 1.5 0 1 1 0-3h15Zm-3 7a1.5 1.5 0 0 1 0 3h-9a1.5 1.5 0 0 1 0-3h9Z'
30
+ />
31
+ )
32
+ )
@@ -0,0 +1,32 @@
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 IconAlignCenterVertical: 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
+ strokeMiterlimit={1.414}
24
+ strokeWidth={2}
25
+ d='M3 12h18'
26
+ />,
27
+ <path
28
+ fill='currentColor'
29
+ d='M7 4.5a1.5 1.5 0 1 1 3 0v15a1.5 1.5 0 0 1-3 0v-15Zm7 3a1.5 1.5 0 0 1 3 0v9a1.5 1.5 0 0 1-3 0v-9Z'
30
+ />
31
+ )
32
+ )
@@ -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 IconBookmark: 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='M17.5 3h-11a.5.5 0 0 0-.5.5V21l6-4.5 6 4.5V3.5a.5.5 0 0 0-.5-.5Z'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,27 @@
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 IconDistributeHorizontal: 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
+ strokeWidth={2}
23
+ d='M4 3v18M20 3v18'
24
+ />,
25
+ <rect width={4} height={10} x={10} y={7} fill='currentColor' rx={2} />
26
+ )
27
+ )
@@ -0,0 +1,35 @@
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 IconDistributeVertical: 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
+ strokeWidth={2}
23
+ d='M21 4H3m18 16H3'
24
+ />,
25
+ <rect
26
+ width={4}
27
+ height={10}
28
+ x={17}
29
+ y={10}
30
+ fill='currentColor'
31
+ rx={2}
32
+ transform='rotate(90 17 10)'
33
+ />
34
+ )
35
+ )
@@ -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 IconGridFour: 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='M12 3H3.25a.25.25 0 0 0-.25.25V12m9-9h8.75a.25.25 0 0 1 .25.25V12m-9-9v18m0 0h8.75a.25.25 0 0 0 .25-.25V12m-9 9H3.25a.25.25 0 0 1-.25-.25V12m0 0h18'
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 IconGridSix: 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='M12 3H3.25a.25.25 0 0 0-.25.25V9m9-6h8.75a.25.25 0 0 1 .25.25V9m-9-6v18m0 0h8.75a.25.25 0 0 0 .25-.25V15m-9 6H3.25a.25.25 0 0 1-.25-.25V15m0-6h18M3 9v6m18-6v6M3 15h18'
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
@@ -1,4 +1,8 @@
1
+ export { IconAddLineBottom } from './add-line-bottom'
2
+ export { IconAddLineRight } from './add-line-right'
1
3
  export { IconAlignBottom } from './align-bottom'
4
+ export { IconAlignCenterHorizontal } from './align-center-horizontal'
5
+ export { IconAlignCenterVertical } from './align-center-vertical'
2
6
  export { IconAlignLeft } from './align-left'
3
7
  export { IconAlignRight } from './align-right'
4
8
  export { IconAlignTop } from './align-top'
@@ -23,6 +27,7 @@ export { IconBarThree } from './bar-three'
23
27
  export { IconBellSlash } from './bell-slash'
24
28
  export { IconBellTilt } from './bell-tilt'
25
29
  export { IconBell } from './bell'
30
+ export { IconBookmark } from './bookmark'
26
31
  export { IconBracketsAngleSlash } from './brackets-angle-slash'
27
32
  export { IconBracketsCurlyCirclesThree } from './brackets-curly-circles-three'
28
33
  export { IconCalendarBlank } from './calendar-blank'
@@ -55,6 +60,8 @@ export { IconCrossCircle } from './cross-circle'
55
60
  export { IconCross } from './cross'
56
61
  export { IconCursorFilled } from './cursor-filled'
57
62
  export { IconCursor } from './cursor'
63
+ export { IconDistributeHorizontal } from './distribute-horizontal'
64
+ export { IconDistributeVertical } from './distribute-vertical'
58
65
  export { IconEnvelope } from './envelope'
59
66
  export { IconExclamationPointCircle } from './exclamation-point-circle'
60
67
  export { IconFactoryHouse } from './factory-house'
@@ -63,6 +70,8 @@ export { IconFunnel } from './funnel'
63
70
  export { IconGauge } from './gauge'
64
71
  export { IconGlobe } from './globe'
65
72
  export { IconGraduationCap } from './graduation-cap'
73
+ export { IconGridFour } from './grid-four'
74
+ export { IconGridSix } from './grid-six'
66
75
  export { IconHandFilled } from './hand-filled'
67
76
  export { IconHand } from './hand'
68
77
  export { IconHouse } from './house'
@@ -72,9 +81,13 @@ export { IconKanban } from './kanban'
72
81
  export { IconKey } from './key'
73
82
  export { IconKeycap } from './keycap'
74
83
  export { IconLaptop } from './laptop'
84
+ export { IconLayout } from './layout'
75
85
  export { IconLifesaver } from './lifesaver'
76
86
  export { IconLightning } from './lightning'
77
87
  export { IconLineDiagonal } from './line-diagonal'
88
+ export { IconLinesThreeHorizontalLineVerticalCenter } from './lines-three-horizontal-line-vertical-center'
89
+ export { IconLinesThreeHorizontal } from './lines-three-horizontal'
90
+ export { IconLinesThreeVertical } from './lines-three-vertical'
78
91
  export { IconLink } from './link'
79
92
  export { IconLockClosed } from './lock-closed'
80
93
  export { IconLockOpen } from './lock-open'
@@ -95,6 +108,10 @@ export { IconPlug } from './plug'
95
108
  export { IconPlus } from './plus'
96
109
  export { IconPushPin } from './push-pin'
97
110
  export { IconQuestionMarkCircle } from './question-mark-circle'
111
+ export { IconRectanglesThreeAligned } from './rectangles-three-aligned'
112
+ export { IconRectanglesThreeFree } from './rectangles-three-free'
113
+ export { IconRectanglesThreeOverlap } from './rectangles-three-overlap'
114
+ export { IconRectanglesTwoLine } from './rectangles-two-line'
98
115
  export { IconRhombus } from './rhombus'
99
116
  export { IconScrollbarXy } from './scrollbar-xy'
100
117
  export { IconShapes } from './shapes'
@@ -111,16 +128,27 @@ export { IconSocialTwitter } from './social-twitter'
111
128
  export { IconSocialYoutube } from './social-youtube'
112
129
  export { IconSpeakerCross } from './speaker-cross'
113
130
  export { IconSpeakerHigh } from './speaker-high'
131
+ export { IconSplitVertical } from './split-vertical'
114
132
  export { IconSquareBracketsAngleSlash } from './square-brackets-angle-slash'
115
133
  export { IconSquareCirclesTwo } from './square-circles-two'
134
+ export { IconSquareLineSquareDashed } from './square-line-square-dashed'
116
135
  export { IconSquareRounded } from './square-rounded'
117
136
  export { IconSquareTriangleCirclePlus } from './square-triangle-circle-plus'
118
137
  export { IconSquare } from './square'
119
138
  export { IconSquaresFour } from './squares-four'
139
+ export { IconSquaresGroup } from './squares-group'
140
+ export { IconSquaresMerge } from './squares-merge'
120
141
  export { IconSquaresThree } from './squares-three'
142
+ export { IconSquaresTwoOverlap } from './squares-two-overlap'
143
+ export { IconSquaresUngroup } from './squares-ungroup'
144
+ export { IconSquaresUnmerge } from './squares-unmerge'
145
+ export { IconStack } from './stack'
121
146
  export { IconStickyNote } from './sticky-note'
122
147
  export { IconStopCircle } from './stop-circle'
123
148
  export { IconTag } from './tag'
149
+ export { IconTextHOne } from './text-h-one'
150
+ export { IconTextHThree } from './text-h-three'
151
+ export { IconTextHTwo } from './text-h-two'
124
152
  export { IconTextT } from './text-t'
125
153
  export { IconThumbsUp } from './thumbs-up'
126
154
  export { IconTicket } from './ticket'
@@ -133,4 +161,6 @@ export { IconTrident } from './trident'
133
161
  export { IconUserAdd } from './user-add'
134
162
  export { IconUser } from './user'
135
163
  export { IconUsers } from './users'
164
+ export { IconViewCenter } from './view-center'
165
+ export { IconViewSideLeft } from './view-side-left'
136
166
  export { IconWallet } from './wallet'
@@ -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 IconLayout: 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 9v12h6M3 9V3h18v6M3 9h6m12 0v12H9M21 9H9m0 0v12'
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 IconLinesThreeHorizontalLineVerticalCenter: 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='M4 5h8m8 0h-8m-8 7h16M4 19h8m8 0h-8m0-14v14'
26
+ />
27
+ </g>,
28
+ <defs>
29
+ <clipPath id='a'>
30
+ <path d='M0 0h24v24H0z' />
31
+ </clipPath>
32
+ </defs>
33
+ )
34
+ )
@@ -0,0 +1,33 @@
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 IconLinesThreeHorizontal: 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
+ strokeWidth={2}
24
+ d='M4 5h16M4 12h16M4 19h16'
25
+ />
26
+ </g>,
27
+ <defs>
28
+ <clipPath id='a'>
29
+ <path d='M0 0h24v24H0z' />
30
+ </clipPath>
31
+ </defs>
32
+ )
33
+ )