File tree Expand file tree Collapse file tree 5 files changed +69
-0
lines changed Expand file tree Collapse file tree 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 = "currentColor"
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
1414export { default as ChevronRightComponent } from './ChevronRightComponent' ;
1515export { default as ChevronUpComponent } from './ChevronUpComponent' ;
1616export { default as ChipGradientComponent } from './ChipGradientComponent' ;
17+ export { default as ClockGradientComponent } from './ClockGradientComponent' ;
1718export { default as CloseComponent } from './CloseComponent' ;
1819export { default as CodeGradientComponent } from './CodeGradientComponent' ;
1920export { default as Copy } from './Copy' ;
2021export { default as DocumentDownload } from './DocumentDownload' ;
2122export { default as DocumentTextGradientComponent } from './DocumentTextGradientComponent' ;
2223export { default as DocumentComponent } from './DocumentComponent' ;
2324export { default as DownloadComponent } from './DownloadComponent' ;
25+ export { default as ExclamationCircleComponent } from './ExclamationCircleComponent' ;
2426export { default as EyeCloseComponent } from './EyeCloseComponent' ;
2527export { default as EyeGradientComponent } from './EyeGradientComponent' ;
2628export { default as EyeOpenComponent } from './EyeOpenComponent' ;
You can’t perform that action at this time.
0 commit comments