@mirohq/design-system-icons 0.4.0 → 0.5.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 +539 -0
- package/dist/main.js.map +1 -1
- package/dist/module.js +520 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +41 -1
- package/package.json +1 -1
- package/react/align-bottom.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/calendar-blank.tsx +35 -0
- package/react/clock-overtime.tsx +31 -0
- package/react/clock.tsx +33 -0
- package/react/graduation-cap.tsx +35 -0
- package/react/index.ts +20 -0
- package/react/lifesaver.tsx +34 -0
- package/react/lightning.tsx +35 -0
- package/react/magnet.tsx +34 -0
- package/react/map.tsx +35 -0
- package/react/push-pin.tsx +31 -0
- package/react/sidebar-closed.tsx +35 -0
- package/react/sidebar-open.tsx +34 -0
- package/react/tag.tsx +29 -0
- package/react/timer.tsx +25 -0
- package/svg/24/align-bottom.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/calendar-blank.svg +1 -0
- package/svg/24/clock-overtime.svg +1 -0
- package/svg/24/clock.svg +1 -0
- package/svg/24/graduation-cap.svg +1 -0
- package/svg/24/lifesaver.svg +1 -0
- package/svg/24/lightning.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/sidebar-closed.svg +1 -0
- package/svg/24/sidebar-open.svg +1 -0
- package/svg/24/tag.svg +1 -0
- package/svg/24/timer.svg +1 -0
- package/svg/meta.json +147 -1
package/dist/types.d.ts
CHANGED
|
@@ -438,6 +438,14 @@ interface IconProps extends StyledIconProps {
|
|
|
438
438
|
fr?: string | number | undefined;
|
|
439
439
|
}
|
|
440
440
|
|
|
441
|
+
declare const IconAlignBottom: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
442
|
+
|
|
443
|
+
declare const IconAlignLeft: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
444
|
+
|
|
445
|
+
declare const IconAlignRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
446
|
+
|
|
447
|
+
declare const IconAlignTop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
448
|
+
|
|
441
449
|
declare const IconArrowBoxOut: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
442
450
|
|
|
443
451
|
declare const IconArrowClockwiseDownRight: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -474,10 +482,18 @@ declare const IconArticle: ForwardRefExoticComponent<IconProps & RefAttributes<S
|
|
|
474
482
|
|
|
475
483
|
declare const IconBarThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
476
484
|
|
|
485
|
+
declare const IconBellSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
486
|
+
|
|
487
|
+
declare const IconBellTilt: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
488
|
+
|
|
489
|
+
declare const IconBell: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
490
|
+
|
|
477
491
|
declare const IconBracketsAngleSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
478
492
|
|
|
479
493
|
declare const IconBracketsCurlyCirclesThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
480
494
|
|
|
495
|
+
declare const IconCalendarBlank: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
496
|
+
|
|
481
497
|
declare const IconCamera: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
482
498
|
|
|
483
499
|
declare const IconCardNumberThree: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -514,6 +530,10 @@ declare const IconClockCounterClockwiseSimple: ForwardRefExoticComponent<IconPro
|
|
|
514
530
|
|
|
515
531
|
declare const IconClockCounterClockwise: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
516
532
|
|
|
533
|
+
declare const IconClockOvertime: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
534
|
+
|
|
535
|
+
declare const IconClock: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
536
|
+
|
|
517
537
|
declare const IconCluster: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
518
538
|
|
|
519
539
|
declare const IconClustered: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -546,6 +566,8 @@ declare const IconGauge: ForwardRefExoticComponent<IconProps & RefAttributes<SVG
|
|
|
546
566
|
|
|
547
567
|
declare const IconGlobe: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
548
568
|
|
|
569
|
+
declare const IconGraduationCap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
570
|
+
|
|
549
571
|
declare const IconHandFilled: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
550
572
|
|
|
551
573
|
declare const IconHand: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -564,6 +586,10 @@ declare const IconKeycap: ForwardRefExoticComponent<IconProps & RefAttributes<SV
|
|
|
564
586
|
|
|
565
587
|
declare const IconLaptop: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
566
588
|
|
|
589
|
+
declare const IconLifesaver: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
590
|
+
|
|
591
|
+
declare const IconLightning: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
592
|
+
|
|
567
593
|
declare const IconLineDiagonal: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
568
594
|
|
|
569
595
|
declare const IconLink: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -572,8 +598,12 @@ declare const IconLockClosed: ForwardRefExoticComponent<IconProps & RefAttribute
|
|
|
572
598
|
|
|
573
599
|
declare const IconLockOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
574
600
|
|
|
601
|
+
declare const IconMagnet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
602
|
+
|
|
575
603
|
declare const IconMagnifyingGlass: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
576
604
|
|
|
605
|
+
declare const IconMap: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
606
|
+
|
|
577
607
|
declare const IconMicrophoneSlash: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
578
608
|
|
|
579
609
|
declare const IconMicrophone: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -598,6 +628,8 @@ declare const IconPlug: ForwardRefExoticComponent<IconProps & RefAttributes<SVGS
|
|
|
598
628
|
|
|
599
629
|
declare const IconPlus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
600
630
|
|
|
631
|
+
declare const IconPushPin: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
632
|
+
|
|
601
633
|
declare const IconQuestionMarkCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
602
634
|
|
|
603
635
|
declare const IconRhombus: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -610,6 +642,10 @@ declare const IconShieldCheck: ForwardRefExoticComponent<IconProps & RefAttribut
|
|
|
610
642
|
|
|
611
643
|
declare const IconShieldLock: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
612
644
|
|
|
645
|
+
declare const IconSidebarClosed: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
646
|
+
|
|
647
|
+
declare const IconSidebarOpen: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
648
|
+
|
|
613
649
|
declare const IconSlidersX: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
614
650
|
|
|
615
651
|
declare const IconSlidersY: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -646,12 +682,16 @@ declare const IconStickyNote: ForwardRefExoticComponent<IconProps & RefAttribute
|
|
|
646
682
|
|
|
647
683
|
declare const IconStopCircle: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
648
684
|
|
|
685
|
+
declare const IconTag: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
686
|
+
|
|
649
687
|
declare const IconTextT: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
650
688
|
|
|
651
689
|
declare const IconThumbsUp: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
652
690
|
|
|
653
691
|
declare const IconTicket: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
654
692
|
|
|
693
|
+
declare const IconTimer: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
694
|
+
|
|
655
695
|
declare const IconTrackpad: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
656
696
|
|
|
657
697
|
declare const IconTrashSimple: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
@@ -670,4 +710,4 @@ declare const IconUsers: ForwardRefExoticComponent<IconProps & RefAttributes<SVG
|
|
|
670
710
|
|
|
671
711
|
declare const IconWallet: ForwardRefExoticComponent<IconProps & RefAttributes<SVGSVGElement>>;
|
|
672
712
|
|
|
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 };
|
|
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 };
|
package/package.json
CHANGED
|
@@ -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 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,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
|
+
)
|
|
@@ -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 IconClockOvertime: 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='square'
|
|
22
|
+
strokeMiterlimit={1.414}
|
|
23
|
+
strokeWidth={2}
|
|
24
|
+
d='M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'
|
|
25
|
+
/>,
|
|
26
|
+
<path
|
|
27
|
+
fill='currentColor'
|
|
28
|
+
d='M12 12c.88.44 2.921 1.267 4.137 1.8.25.11.362.401.229.639a5 5 0 1 1-4.865-7.414c.274-.028.499.2.499.477V12Z'
|
|
29
|
+
/>
|
|
30
|
+
)
|
|
31
|
+
)
|
package/react/clock.tsx
ADDED
|
@@ -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 IconClock: 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='M11 7.4v4.05l2.7 2.25M20 11a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'
|
|
25
|
+
/>
|
|
26
|
+
</g>,
|
|
27
|
+
<defs>
|
|
28
|
+
<clipPath id='a'>
|
|
29
|
+
<path d='M0 0h24v24H0z' />
|
|
30
|
+
</clipPath>
|
|
31
|
+
</defs>
|
|
32
|
+
)
|
|
33
|
+
)
|
|
@@ -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 IconGraduationCap: 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='M2 8.23 12.5 3 23 8.23 19.684 9.8M2 8.23V20M2 8.23 5.316 9.8m0 0 7.184 3.4 7.184-3.4m-14.368 0v3.016A7.184 7.184 0 0 0 12.5 20v0a7.184 7.184 0 0 0 7.184-7.184V9.8'
|
|
27
|
+
/>
|
|
28
|
+
</g>,
|
|
29
|
+
<defs>
|
|
30
|
+
<clipPath id='a'>
|
|
31
|
+
<path d='M0 0h24v24H0z' />
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
)
|
|
35
|
+
)
|
package/react/index.ts
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
export { IconAlignBottom } from './align-bottom'
|
|
2
|
+
export { IconAlignLeft } from './align-left'
|
|
3
|
+
export { IconAlignRight } from './align-right'
|
|
4
|
+
export { IconAlignTop } from './align-top'
|
|
1
5
|
export { IconArrowBoxOut } from './arrow-box-out'
|
|
2
6
|
export { IconArrowClockwiseDownRight } from './arrow-clockwise-down-right'
|
|
3
7
|
export { IconArrowClockwiseUpLeft } from './arrow-clockwise-up-left'
|
|
@@ -16,8 +20,12 @@ export { IconArrowsClockwiseX } from './arrows-clockwise-x'
|
|
|
16
20
|
export { IconArrowsClockwiseY } from './arrows-clockwise-y'
|
|
17
21
|
export { IconArticle } from './article'
|
|
18
22
|
export { IconBarThree } from './bar-three'
|
|
23
|
+
export { IconBellSlash } from './bell-slash'
|
|
24
|
+
export { IconBellTilt } from './bell-tilt'
|
|
25
|
+
export { IconBell } from './bell'
|
|
19
26
|
export { IconBracketsAngleSlash } from './brackets-angle-slash'
|
|
20
27
|
export { IconBracketsCurlyCirclesThree } from './brackets-curly-circles-three'
|
|
28
|
+
export { IconCalendarBlank } from './calendar-blank'
|
|
21
29
|
export { IconCamera } from './camera'
|
|
22
30
|
export { IconCardNumberThree } from './card-number-three'
|
|
23
31
|
export { IconCard } from './card'
|
|
@@ -36,6 +44,8 @@ export { IconCircle } from './circle'
|
|
|
36
44
|
export { IconCirclesConnected } from './circles-connected'
|
|
37
45
|
export { IconClockCounterClockwiseSimple } from './clock-counter-clockwise-simple'
|
|
38
46
|
export { IconClockCounterClockwise } from './clock-counter-clockwise'
|
|
47
|
+
export { IconClockOvertime } from './clock-overtime'
|
|
48
|
+
export { IconClock } from './clock'
|
|
39
49
|
export { IconCluster } from './cluster'
|
|
40
50
|
export { IconClustered } from './clustered'
|
|
41
51
|
export { IconCog } from './cog'
|
|
@@ -52,6 +62,7 @@ export { IconFactory } from './factory'
|
|
|
52
62
|
export { IconFunnel } from './funnel'
|
|
53
63
|
export { IconGauge } from './gauge'
|
|
54
64
|
export { IconGlobe } from './globe'
|
|
65
|
+
export { IconGraduationCap } from './graduation-cap'
|
|
55
66
|
export { IconHandFilled } from './hand-filled'
|
|
56
67
|
export { IconHand } from './hand'
|
|
57
68
|
export { IconHouse } from './house'
|
|
@@ -61,11 +72,15 @@ export { IconKanban } from './kanban'
|
|
|
61
72
|
export { IconKey } from './key'
|
|
62
73
|
export { IconKeycap } from './keycap'
|
|
63
74
|
export { IconLaptop } from './laptop'
|
|
75
|
+
export { IconLifesaver } from './lifesaver'
|
|
76
|
+
export { IconLightning } from './lightning'
|
|
64
77
|
export { IconLineDiagonal } from './line-diagonal'
|
|
65
78
|
export { IconLink } from './link'
|
|
66
79
|
export { IconLockClosed } from './lock-closed'
|
|
67
80
|
export { IconLockOpen } from './lock-open'
|
|
81
|
+
export { IconMagnet } from './magnet'
|
|
68
82
|
export { IconMagnifyingGlass } from './magnifying-glass'
|
|
83
|
+
export { IconMap } from './map'
|
|
69
84
|
export { IconMicrophoneSlash } from './microphone-slash'
|
|
70
85
|
export { IconMicrophone } from './microphone'
|
|
71
86
|
export { IconMinus } from './minus'
|
|
@@ -78,12 +93,15 @@ export { IconPlayCircle } from './play-circle'
|
|
|
78
93
|
export { IconPlaybackSpeedCircle } from './playback-speed-circle'
|
|
79
94
|
export { IconPlug } from './plug'
|
|
80
95
|
export { IconPlus } from './plus'
|
|
96
|
+
export { IconPushPin } from './push-pin'
|
|
81
97
|
export { IconQuestionMarkCircle } from './question-mark-circle'
|
|
82
98
|
export { IconRhombus } from './rhombus'
|
|
83
99
|
export { IconScrollbarXy } from './scrollbar-xy'
|
|
84
100
|
export { IconShapes } from './shapes'
|
|
85
101
|
export { IconShieldCheck } from './shield-check'
|
|
86
102
|
export { IconShieldLock } from './shield-lock'
|
|
103
|
+
export { IconSidebarClosed } from './sidebar-closed'
|
|
104
|
+
export { IconSidebarOpen } from './sidebar-open'
|
|
87
105
|
export { IconSlidersX } from './sliders-x'
|
|
88
106
|
export { IconSlidersY } from './sliders-y'
|
|
89
107
|
export { IconSocialFacebook } from './social-facebook'
|
|
@@ -102,9 +120,11 @@ export { IconSquaresFour } from './squares-four'
|
|
|
102
120
|
export { IconSquaresThree } from './squares-three'
|
|
103
121
|
export { IconStickyNote } from './sticky-note'
|
|
104
122
|
export { IconStopCircle } from './stop-circle'
|
|
123
|
+
export { IconTag } from './tag'
|
|
105
124
|
export { IconTextT } from './text-t'
|
|
106
125
|
export { IconThumbsUp } from './thumbs-up'
|
|
107
126
|
export { IconTicket } from './ticket'
|
|
127
|
+
export { IconTimer } from './timer'
|
|
108
128
|
export { IconTrackpad } from './trackpad'
|
|
109
129
|
export { IconTrashSimple } from './trash-simple'
|
|
110
130
|
export { IconTrash } from './trash'
|
|
@@ -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 IconLifesaver: 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='square'
|
|
23
|
+
strokeMiterlimit={1.414}
|
|
24
|
+
strokeWidth={2}
|
|
25
|
+
d='M14.828 14.828a4 4 0 0 1-5.656 0m5.656 0a4 4 0 0 0 0-5.656m0 5.656 3.182 3.182m-8.838-3.182a4 4 0 0 1 0-5.656m0 5.656L5.99 18.01m3.182-8.838a4 4 0 0 1 5.656 0m-5.656 0L5.99 5.99m8.838 3.182L18.01 5.99m.354 12.374A9 9 0 1 1 5.636 5.636a9 9 0 0 1 12.728 12.728Z'
|
|
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 IconLightning: 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='square'
|
|
23
|
+
strokeLinejoin='round'
|
|
24
|
+
strokeMiterlimit={1.414}
|
|
25
|
+
strokeWidth={2}
|
|
26
|
+
d='M11.973 1.867 4.231 14.62a.25.25 0 0 0 .213.38H11.5l-.44 7.04c-.016.258.32.368.46.152l8.232-12.807a.25.25 0 0 0-.21-.385H12l.437-6.987c.016-.261-.328-.37-.463-.146Z'
|
|
27
|
+
/>
|
|
28
|
+
</g>,
|
|
29
|
+
<defs>
|
|
30
|
+
<clipPath id='a'>
|
|
31
|
+
<path d='M0 0h24v24H0z' />
|
|
32
|
+
</clipPath>
|
|
33
|
+
</defs>
|
|
34
|
+
)
|
|
35
|
+
)
|