File tree 5 files changed +69
-0
lines changed
5 files changed +69
-0
lines changed Original file line number Diff line number Diff line change
1
+ import * as React from 'react' ;
2
+ import type { SVGProps } from 'react' ;
3
+ const SvgClockGradientcomponent = ( props : SVGProps < SVGSVGElement > ) => (
4
+ < svg
5
+ xmlns = "http://www.w3.org/2000/svg"
6
+ width = { 112 }
7
+ height = { 113 }
8
+ fill = "none"
9
+ { ...props }
10
+ >
11
+ < path
12
+ stroke = "url(#clock-gradient_component_svg__a)"
13
+ strokeLinecap = "round"
14
+ strokeLinejoin = "round"
15
+ strokeWidth = { 3 }
16
+ d = "M56 38.07v18.667l14 14m28-14c0 23.196-18.804 42-42 42s-42-18.804-42-42 18.804-42 42-42 42 18.804 42 42"
17
+ />
18
+ < defs >
19
+ < linearGradient
20
+ id = "clock-gradient_component_svg__a"
21
+ x1 = { - 1.37 }
22
+ x2 = { 121.7 }
23
+ y1 = { - 0.633 }
24
+ y2 = { 8.444 }
25
+ gradientUnits = "userSpaceOnUse"
26
+ >
27
+ < stop stopColor = "#FF92DE" />
28
+ < stop offset = { 1 } stopColor = "#FDC300" />
29
+ </ linearGradient >
30
+ </ defs >
31
+ </ svg >
32
+ ) ;
33
+ export default SvgClockGradientcomponent ;
Original file line number Diff line number Diff line change
1
+ import * as React from 'react' ;
2
+ import type { SVGProps } from 'react' ;
3
+ const SvgExclamationCirclecomponent = ( props : SVGProps < SVGSVGElement > ) => (
4
+ < svg
5
+ xmlns = "http://www.w3.org/2000/svg"
6
+ width = { 113 }
7
+ height = { 113 }
8
+ fill = "none"
9
+ { ...props }
10
+ >
11
+ < path
12
+ stroke = "#E84D66"
13
+ strokeLinecap = "round"
14
+ strokeLinejoin = "round"
15
+ strokeWidth = { 3 }
16
+ d = "M56.5 37.455v18.667m0 18.667h.047M98.5 56.122c0 23.196-18.804 42-42 42s-42-18.804-42-42 18.804-42 42-42 42 18.804 42 42"
17
+ />
18
+ </ svg >
19
+ ) ;
20
+ export default SvgExclamationCirclecomponent ;
Original file line number Diff line number Diff line change @@ -14,13 +14,15 @@ export { default as ChevronRightThinComponent } from './ChevronRightThinComponen
14
14
export { default as ChevronRightComponent } from './ChevronRightComponent' ;
15
15
export { default as ChevronUpComponent } from './ChevronUpComponent' ;
16
16
export { default as ChipGradientComponent } from './ChipGradientComponent' ;
17
+ export { default as ClockGradientComponent } from './ClockGradientComponent' ;
17
18
export { default as CloseComponent } from './CloseComponent' ;
18
19
export { default as CodeGradientComponent } from './CodeGradientComponent' ;
19
20
export { default as Copy } from './Copy' ;
20
21
export { default as DocumentDownload } from './DocumentDownload' ;
21
22
export { default as DocumentTextGradientComponent } from './DocumentTextGradientComponent' ;
22
23
export { default as DocumentComponent } from './DocumentComponent' ;
23
24
export { default as DownloadComponent } from './DownloadComponent' ;
25
+ export { default as ExclamationCircleComponent } from './ExclamationCircleComponent' ;
24
26
export { default as EyeCloseComponent } from './EyeCloseComponent' ;
25
27
export { default as EyeGradientComponent } from './EyeGradientComponent' ;
26
28
export { default as EyeOpenComponent } from './EyeOpenComponent' ;
You can’t perform that action at this time.
0 commit comments