@mirohq/design-system-icons 0.4.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 +1598 -229
- package/dist/main.js.map +1 -1
- package/dist/module.js +1549 -230
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +101 -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-bottom.tsx +32 -0
- package/react/align-center-horizontal.tsx +32 -0
- package/react/align-center-vertical.tsx +32 -0
- package/react/align-left.tsx +32 -0
- package/react/align-right.tsx +32 -0
- package/react/align-top.tsx +32 -0
- package/react/bell-slash.tsx +31 -0
- package/react/bell-tilt.tsx +32 -0
- package/react/bell.tsx +32 -0
- package/react/bookmark.tsx +34 -0
- package/react/calendar-blank.tsx +35 -0
- package/react/clock-overtime.tsx +31 -0
- package/react/clock.tsx +33 -0
- package/react/distribute-horizontal.tsx +27 -0
- package/react/distribute-vertical.tsx +35 -0
- package/react/graduation-cap.tsx +35 -0
- package/react/grid-four.tsx +34 -0
- package/react/grid-six.tsx +34 -0
- package/react/index.ts +50 -0
- package/react/layout.tsx +34 -0
- package/react/lifesaver.tsx +34 -0
- package/react/lightning.tsx +35 -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/magnet.tsx +34 -0
- package/react/map.tsx +35 -0
- package/react/push-pin.tsx +31 -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/sidebar-closed.tsx +35 -0
- package/react/sidebar-open.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/tag.tsx +29 -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/timer.tsx +25 -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-bottom.svg +1 -0
- package/svg/24/align-center-horizontal.svg +1 -0
- package/svg/24/align-center-vertical.svg +1 -0
- package/svg/24/align-left.svg +1 -0
- package/svg/24/align-right.svg +1 -0
- package/svg/24/align-top.svg +1 -0
- package/svg/24/bell-slash.svg +1 -0
- package/svg/24/bell-tilt.svg +1 -0
- package/svg/24/bell.svg +1 -0
- package/svg/24/bookmark.svg +1 -0
- package/svg/24/calendar-blank.svg +1 -0
- package/svg/24/clock-overtime.svg +1 -0
- package/svg/24/clock.svg +1 -0
- package/svg/24/distribute-horizontal.svg +1 -0
- package/svg/24/distribute-vertical.svg +1 -0
- package/svg/24/graduation-cap.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/lifesaver.svg +1 -0
- package/svg/24/lightning.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/magnet.svg +1 -0
- package/svg/24/map.svg +1 -0
- package/svg/24/push-pin.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/sidebar-closed.svg +1 -0
- package/svg/24/sidebar-open.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/tag.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/timer.svg +1 -0
- package/svg/24/view-center.svg +1 -0
- package/svg/24/view-side-left.svg +1 -0
- package/svg/meta.json +412 -1
package/dist/types.d.ts
CHANGED
|
@@ -438,6 +438,22 @@ 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
|
+
|
|
445
|
+
declare const IconAlignBottom: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
446
|
+
|
|
447
|
+
declare const IconAlignCenterHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
448
|
+
|
|
449
|
+
declare const IconAlignCenterVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
450
|
+
|
|
451
|
+
declare const IconAlignLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
452
|
+
|
|
453
|
+
declare const IconAlignRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
454
|
+
|
|
455
|
+
declare const IconAlignTop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
456
|
+
|
|
441
457
|
declare const IconArrowBoxOut: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
442
458
|
|
|
443
459
|
declare const IconArrowClockwiseDownRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -474,10 +490,20 @@ declare const IconArticle: ForwardRefExoticComponent<IconProps & RefAttributes<S
|
|
|
474
490
|
|
|
475
491
|
declare const IconBarThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
476
492
|
|
|
493
|
+
declare const IconBellSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
494
|
+
|
|
495
|
+
declare const IconBellTilt: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
496
|
+
|
|
497
|
+
declare const IconBell: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
498
|
+
|
|
499
|
+
declare const IconBookmark: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
500
|
+
|
|
477
501
|
declare const IconBracketsAngleSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
478
502
|
|
|
479
503
|
declare const IconBracketsCurlyCirclesThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
480
504
|
|
|
505
|
+
declare const IconCalendarBlank: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
506
|
+
|
|
481
507
|
declare const IconCamera: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
482
508
|
|
|
483
509
|
declare const IconCardNumberThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -514,6 +540,10 @@ declare const IconClockCounterClockwiseSimple: ForwardRefExoticComponent<IconPro
|
|
|
514
540
|
|
|
515
541
|
declare const IconClockCounterClockwise: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
516
542
|
|
|
543
|
+
declare const IconClockOvertime: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
544
|
+
|
|
545
|
+
declare const IconClock: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
546
|
+
|
|
517
547
|
declare const IconCluster: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
518
548
|
|
|
519
549
|
declare const IconClustered: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -532,6 +562,10 @@ declare const IconCursorFilled: ForwardRefExoticComponent<IconProps & RefAttribu
|
|
|
532
562
|
|
|
533
563
|
declare const IconCursor: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
534
564
|
|
|
565
|
+
declare const IconDistributeHorizontal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
566
|
+
|
|
567
|
+
declare const IconDistributeVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
568
|
+
|
|
535
569
|
declare const IconEnvelope: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
536
570
|
|
|
537
571
|
declare const IconExclamationPointCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -546,6 +580,12 @@ declare const IconGauge: ForwardRefExoticComponent<IconProps & RefAttributes<SVG
|
|
|
546
580
|
|
|
547
581
|
declare const IconGlobe: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
548
582
|
|
|
583
|
+
declare const IconGraduationCap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
584
|
+
|
|
585
|
+
declare const IconGridFour: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
586
|
+
|
|
587
|
+
declare const IconGridSix: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
588
|
+
|
|
549
589
|
declare const IconHandFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
550
590
|
|
|
551
591
|
declare const IconHand: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -564,16 +604,32 @@ declare const IconKeycap: ForwardRefExoticComponent<IconProps & RefAttributes<SV
|
|
|
564
604
|
|
|
565
605
|
declare const IconLaptop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
566
606
|
|
|
607
|
+
declare const IconLayout: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
608
|
+
|
|
609
|
+
declare const IconLifesaver: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
610
|
+
|
|
611
|
+
declare const IconLightning: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
612
|
+
|
|
567
613
|
declare const IconLineDiagonal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
568
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
|
+
|
|
569
621
|
declare const IconLink: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
570
622
|
|
|
571
623
|
declare const IconLockClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
572
624
|
|
|
573
625
|
declare const IconLockOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
574
626
|
|
|
627
|
+
declare const IconMagnet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
628
|
+
|
|
575
629
|
declare const IconMagnifyingGlass: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
576
630
|
|
|
631
|
+
declare const IconMap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
632
|
+
|
|
577
633
|
declare const IconMicrophoneSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
578
634
|
|
|
579
635
|
declare const IconMicrophone: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -598,8 +654,18 @@ declare const IconPlug: ForwardRefExoticComponent<IconProps & RefAttributes<SVGS
|
|
|
598
654
|
|
|
599
655
|
declare const IconPlus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
600
656
|
|
|
657
|
+
declare const IconPushPin: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
658
|
+
|
|
601
659
|
declare const IconQuestionMarkCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
602
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
|
+
|
|
603
669
|
declare const IconRhombus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
604
670
|
|
|
605
671
|
declare const IconScrollbarXy: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -610,6 +676,10 @@ declare const IconShieldCheck: ForwardRefExoticComponent<IconProps & RefAttribut
|
|
|
610
676
|
|
|
611
677
|
declare const IconShieldLock: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
612
678
|
|
|
679
|
+
declare const IconSidebarClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
680
|
+
|
|
681
|
+
declare const IconSidebarOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
682
|
+
|
|
613
683
|
declare const IconSlidersX: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
614
684
|
|
|
615
685
|
declare const IconSlidersY: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -628,10 +698,14 @@ declare const IconSpeakerCross: ForwardRefExoticComponent<IconProps & RefAttribu
|
|
|
628
698
|
|
|
629
699
|
declare const IconSpeakerHigh: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
630
700
|
|
|
701
|
+
declare const IconSplitVertical: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
702
|
+
|
|
631
703
|
declare const IconSquareBracketsAngleSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
632
704
|
|
|
633
705
|
declare const IconSquareCirclesTwo: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
634
706
|
|
|
707
|
+
declare const IconSquareLineSquareDashed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
708
|
+
|
|
635
709
|
declare const IconSquareRounded: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
636
710
|
|
|
637
711
|
declare const IconSquareTriangleCirclePlus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -640,18 +714,40 @@ declare const IconSquare: ForwardRefExoticComponent<IconProps & RefAttributes<SV
|
|
|
640
714
|
|
|
641
715
|
declare const IconSquaresFour: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
642
716
|
|
|
717
|
+
declare const IconSquaresGroup: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
718
|
+
|
|
719
|
+
declare const IconSquaresMerge: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
720
|
+
|
|
643
721
|
declare const IconSquaresThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
644
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
|
+
|
|
645
731
|
declare const IconStickyNote: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
646
732
|
|
|
647
733
|
declare const IconStopCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
648
734
|
|
|
735
|
+
declare const IconTag: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
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
|
+
|
|
649
743
|
declare const IconTextT: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
650
744
|
|
|
651
745
|
declare const IconThumbsUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
652
746
|
|
|
653
747
|
declare const IconTicket: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
654
748
|
|
|
749
|
+
declare const IconTimer: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
750
|
+
|
|
655
751
|
declare const IconTrackpad: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
656
752
|
|
|
657
753
|
declare const IconTrashSimple: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -668,6 +764,10 @@ declare const IconUser: ForwardRefExoticComponent<IconProps & RefAttributes<SVGS
|
|
|
668
764
|
|
|
669
765
|
declare const IconUsers: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
670
766
|
|
|
767
|
+
declare const IconViewCenter: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
768
|
+
|
|
769
|
+
declare const IconViewSideLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
770
|
+
|
|
671
771
|
declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
672
772
|
|
|
673
|
-
export { IconArrowBoxOut, IconArrowClockwiseDownRight, IconArrowClockwiseUpLeft, IconArrowCounterClockwiseDownLeft, IconArrowCounterClockwiseUpRight, IconArrowDown, IconArrowDownLeft, IconArrowDownRight, IconArrowFatRight, IconArrowLeft, IconArrowRight, IconArrowUp, IconArrowUpLeft, IconArrowUpRight, IconArrowsClockwiseX, IconArrowsClockwiseY, IconArticle, IconBarThree, IconBracketsAngleSlash, IconBracketsCurlyCirclesThree, IconCamera, IconCard, IconCardNumberThree, IconCardsPoker, IconChartBarY, IconChartBarYSimple, IconChat, IconCheckMark, IconChevronDown, IconChevronLeft, IconChevronRight, IconChevronUp, IconCircle, IconCircleMotionX, IconCircleNotch, IconCirclesConnected, IconClockCounterClockwise, IconClockCounterClockwiseSimple, IconCluster, IconClustered, IconCog, IconCreditCard, IconCrop, IconCross, IconCrossCircle, IconCursor, IconCursorFilled, IconEnvelope, IconExclamationPointCircle, IconFactory, IconFactoryHouse, IconFunnel, IconGauge, IconGlobe, IconHand, IconHandFilled, IconHouse, IconImage, IconInformationMarkCircle, IconKanban, IconKey, IconKeycap, IconLaptop, IconLineDiagonal, IconLink, IconLockClosed, IconLockOpen, IconMagnifyingGlass, IconMicrophone, IconMicrophoneSlash, IconMinus, IconMouse, IconParallelogram, IconPauseCircle, IconPdf, IconPlaceholder, IconPlayCircle, IconPlaybackSpeedCircle, IconPlug, IconPlus, IconProps, IconQuestionMarkCircle, IconRhombus, IconScrollbarXy, IconShapes, IconShieldCheck, IconShieldLock, IconSlidersX, IconSlidersY, IconSocialFacebook, IconSocialInstagram, IconSocialLinkedin, IconSocialTwitter, IconSocialYoutube, IconSpeakerCross, IconSpeakerHigh, IconSquare, IconSquareBracketsAngleSlash, IconSquareCirclesTwo, IconSquareRounded, IconSquareTriangleCirclePlus, IconSquaresFour, IconSquaresThree, IconStickyNote, IconStopCircle, IconTextT, IconThumbsUp, IconTicket, 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 IconAlignBottom: 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 20h18'
|
|
26
|
+
/>,
|
|
27
|
+
<path
|
|
28
|
+
fill='currentColor'
|
|
29
|
+
d='M7 3.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 5a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z'
|
|
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 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,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 IconAlignLeft: 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='M4 21V3'
|
|
26
|
+
/>,
|
|
27
|
+
<path
|
|
28
|
+
fill='currentColor'
|
|
29
|
+
d='M8 15.5A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Zm0-7A1.5 1.5 0 0 1 9.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 8 8.5Z'
|
|
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 IconAlignRight: 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='M20 3v18'
|
|
26
|
+
/>,
|
|
27
|
+
<path
|
|
28
|
+
fill='currentColor'
|
|
29
|
+
d='M2 8.5A1.5 1.5 0 0 1 3.5 7h11a1.5 1.5 0 0 1 0 3h-11A1.5 1.5 0 0 1 2 8.5Zm6 7A1.5 1.5 0 0 1 9.5 14h5a1.5 1.5 0 0 1 0 3h-5A1.5 1.5 0 0 1 8 15.5Z'
|
|
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 IconAlignTop: 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 3h18'
|
|
26
|
+
/>,
|
|
27
|
+
<path
|
|
28
|
+
fill='currentColor'
|
|
29
|
+
d='M7 8.5a1.5 1.5 0 1 1 3 0v11a1.5 1.5 0 0 1-3 0v-11Zm7 0a1.5 1.5 0 0 1 3 0v6a1.5 1.5 0 0 1-3 0v-6Z'
|
|
30
|
+
/>
|
|
31
|
+
)
|
|
32
|
+
)
|
|
@@ -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 IconBellSlash: 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
|
+
fill='currentColor'
|
|
22
|
+
d='M17 12.5h-1a1 1 0 0 0 .168.555L17 12.5Zm2.482 3.723.832-.555-.832.555Zm-.416.777v1-1ZM7 12l.857.514A1 1 0 0 0 8 12H7Zm-1.494.546a1 1 0 0 0 1.715 1.03l-1.715-1.03Zm-2.213 6.747a1 1 0 1 0 1.414 1.414l-1.414-1.414ZM20.707 4.707a1 1 0 0 0-1.414-1.414l1.414 1.414ZM14 5.535a1 1 0 1 0 1.002-1.732L14 5.535ZM16 9v3.5h2V9h-2Zm.168 4.055 2.482 3.722 1.664-1.11-2.482-3.722-1.664 1.11Zm2.482 3.722a.5.5 0 0 1 .416-.777v2c1.198 0 1.912-1.335 1.248-2.332l-1.664 1.11ZM13 18a1 1 0 0 1-1 1v2a3 3 0 0 0 3-3h-2Zm-1 1a1 1 0 0 1-1-1H9a3 3 0 0 0 3 3v-2Zm3.757-11.377C15.914 8.05 16 8.514 16 9h2c0-.724-.129-1.42-.366-2.066l-1.877.689ZM19.066 16H7v2h12.066v-2ZM8 12V9H6v3h2Zm0-3a4 4 0 0 1 4-4V3a6 6 0 0 0-6 6h2Zm-.779 4.575.636-1.06-1.714-1.03-.637 1.061 1.715 1.03Zm-2.514 7.132 16-16-1.414-1.414-16 16 1.414 1.414ZM12 5c.73 0 1.412.195 2 .535l1-1.732A5.977 5.977 0 0 0 12 3v2Z'
|
|
23
|
+
/>
|
|
24
|
+
</g>,
|
|
25
|
+
<defs>
|
|
26
|
+
<clipPath id='a'>
|
|
27
|
+
<path d='M0 0h24v24H0z' />
|
|
28
|
+
</clipPath>
|
|
29
|
+
</defs>
|
|
30
|
+
)
|
|
31
|
+
)
|
|
@@ -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 IconBellTilt: 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
|
+
strokeWidth={2}
|
|
23
|
+
d='M11.646 17.795a2 2 0 0 1-3.465-2M8.583 9.1l1.5-2.598a5 5 0 0 1 8.66 5l-1.75 3.03.289 4.466a.5.5 0 0 1-.75.465L4.25 12.37a.5.5 0 0 1 .007-.87l4.326-2.402Z'
|
|
24
|
+
/>
|
|
25
|
+
</g>,
|
|
26
|
+
<defs>
|
|
27
|
+
<clipPath id='a'>
|
|
28
|
+
<path d='M0 0h24v24H0z' />
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
31
|
+
)
|
|
32
|
+
)
|
package/react/bell.tsx
ADDED
|
@@ -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 IconBell: 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
|
+
strokeWidth={2}
|
|
23
|
+
d='M14 18a2 2 0 1 1-4 0m-3-6V9a5 5 0 0 1 10 0v3.5l2.482 3.723a.5.5 0 0 1-.416.777H4.883a.5.5 0 0 1-.429-.757L7 12Z'
|
|
24
|
+
/>
|
|
25
|
+
</g>,
|
|
26
|
+
<defs>
|
|
27
|
+
<clipPath id='a'>
|
|
28
|
+
<path d='M0 0h24v24H0z' />
|
|
29
|
+
</clipPath>
|
|
30
|
+
</defs>
|
|
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,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 IconCalendarBlank: 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
|
+
strokeMiterlimit={1.414}
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
d='M3 11v10h18V11M3 11V5h18v6M3 11h18m-5-8v4M8 3v4'
|
|
27
|
+
/>
|
|
28
|
+
</g>,
|
|
29
|
+
<defs>
|
|
30
|
+
<clipPath id='a'>
|
|
31
|
+
<path d='M0 0h24v24H0z' />
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
)
|
|
35
|
+
)
|