@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.
- package/dist/main.js +842 -12
- package/dist/main.js.map +1 -1
- package/dist/module.js +813 -13
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +61 -1
- package/package.json +1 -1
- package/react/add-line-bottom.tsx +33 -0
- package/react/add-line-right.tsx +33 -0
- package/react/align-center-horizontal.tsx +32 -0
- package/react/align-center-vertical.tsx +32 -0
- package/react/bookmark.tsx +34 -0
- package/react/distribute-horizontal.tsx +27 -0
- package/react/distribute-vertical.tsx +35 -0
- package/react/grid-four.tsx +34 -0
- package/react/grid-six.tsx +34 -0
- package/react/index.ts +30 -0
- package/react/layout.tsx +34 -0
- package/react/lines-three-horizontal-line-vertical-center.tsx +34 -0
- package/react/lines-three-horizontal.tsx +33 -0
- package/react/lines-three-vertical.tsx +33 -0
- package/react/rectangles-three-aligned.tsx +34 -0
- package/react/rectangles-three-free.tsx +34 -0
- package/react/rectangles-three-overlap.tsx +34 -0
- package/react/rectangles-two-line.tsx +34 -0
- package/react/split-vertical.tsx +34 -0
- package/react/square-line-square-dashed.tsx +34 -0
- package/react/squares-group.tsx +32 -0
- package/react/squares-merge.tsx +31 -0
- package/react/squares-two-overlap.tsx +34 -0
- package/react/squares-ungroup.tsx +31 -0
- package/react/squares-unmerge.tsx +34 -0
- package/react/stack.tsx +34 -0
- package/react/text-h-one.tsx +34 -0
- package/react/text-h-three.tsx +34 -0
- package/react/text-h-two.tsx +34 -0
- package/react/view-center.tsx +28 -0
- package/react/view-side-left.tsx +28 -0
- package/svg/24/add-line-bottom.svg +1 -0
- package/svg/24/add-line-right.svg +1 -0
- package/svg/24/align-center-horizontal.svg +1 -0
- package/svg/24/align-center-vertical.svg +1 -0
- package/svg/24/bookmark.svg +1 -0
- package/svg/24/distribute-horizontal.svg +1 -0
- package/svg/24/distribute-vertical.svg +1 -0
- package/svg/24/grid-four.svg +1 -0
- package/svg/24/grid-six.svg +1 -0
- package/svg/24/layout.svg +1 -0
- package/svg/24/lines-three-horizontal-line-vertical-center.svg +1 -0
- package/svg/24/lines-three-horizontal.svg +1 -0
- package/svg/24/lines-three-vertical.svg +1 -0
- package/svg/24/rectangles-three-aligned.svg +1 -0
- package/svg/24/rectangles-three-free.svg +1 -0
- package/svg/24/rectangles-three-overlap.svg +1 -0
- package/svg/24/rectangles-two-line.svg +1 -0
- package/svg/24/split-vertical.svg +1 -0
- package/svg/24/square-line-square-dashed.svg +1 -0
- package/svg/24/squares-group.svg +1 -0
- package/svg/24/squares-merge.svg +1 -0
- package/svg/24/squares-two-overlap.svg +1 -0
- package/svg/24/squares-ungroup.svg +1 -0
- package/svg/24/squares-unmerge.svg +1 -0
- package/svg/24/stack.svg +1 -0
- package/svg/24/text-h-one.svg +1 -0
- package/svg/24/text-h-three.svg +1 -0
- package/svg/24/text-h-two.svg +1 -0
- package/svg/24/view-center.svg +1 -0
- package/svg/24/view-side-left.svg +1 -0
- 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
|
@@ -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'
|
package/react/layout.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 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
|
+
)
|