File tree Expand file tree Collapse file tree 5 files changed +66
-0
lines changed Expand file tree Collapse file tree 5 files changed +66
-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 SvgCopy = ( props : SVGProps < SVGSVGElement > ) => (
4
+ < svg
5
+ xmlns = "http://www.w3.org/2000/svg"
6
+ width = { 18 }
7
+ height = { 18 }
8
+ fill = "none"
9
+ { ...props }
10
+ >
11
+ < path
12
+ fill = "currentColor"
13
+ fillRule = "evenodd"
14
+ d = "M3 2a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h1V7a3 3 0 0 1 3-3h5V3a1 1 0 0 0-1-1zm11 2V3a3 3 0 0 0-3-3H3a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h1v1a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3zM7 6a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1z"
15
+ clipRule = "evenodd"
16
+ />
17
+ </ svg >
18
+ ) ;
19
+ export default SvgCopy ;
Original file line number Diff line number Diff line change
1
+ import * as React from 'react' ;
2
+ import type { SVGProps } from 'react' ;
3
+ const SvgKey = ( props : SVGProps < SVGSVGElement > ) => (
4
+ < svg
5
+ xmlns = "http://www.w3.org/2000/svg"
6
+ width = { 32 }
7
+ height = { 32 }
8
+ fill = "none"
9
+ { ...props }
10
+ >
11
+ < path
12
+ stroke = "url(#key_svg__a)"
13
+ strokeLinecap = "round"
14
+ strokeLinejoin = "round"
15
+ strokeWidth = { 2 }
16
+ d = "M21 7.667A3.333 3.333 0 0 1 24.335 11M31 11c0 5.523-4.477 10-10 10-1.01 0-1.985-.15-2.904-.428l-3.762 3.761H11v3.334H7.667V31h-5C1.747 31 1 30.254 1 29.333v-4.31c0-.441.176-.865.489-1.178l9.94-9.94A10 10 0 0 1 11 11c0-5.523 4.477-10 10-10s10 4.477 10 10"
17
+ />
18
+ < defs >
19
+ < linearGradient
20
+ id = "key_svg__a"
21
+ x1 = { - 4.489 }
22
+ x2 = { 39.465 }
23
+ y1 = { - 4.489 }
24
+ y2 = { - 1.248 }
25
+ gradientUnits = "userSpaceOnUse"
26
+ >
27
+ < stop stopColor = "#FF92E1" />
28
+ < stop offset = { 1 } stopColor = "#FDC300" />
29
+ </ linearGradient >
30
+ </ defs >
31
+ </ svg >
32
+ ) ;
33
+ export default SvgKey ;
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export { default as ChevronUpComponent } from './ChevronUpComponent';
15
15
export { default as ChipGradientComponent } from './ChipGradientComponent' ;
16
16
export { default as CloseComponent } from './CloseComponent' ;
17
17
export { default as CodeGradientComponent } from './CodeGradientComponent' ;
18
+ export { default as Copy } from './Copy' ;
18
19
export { default as DocumentDownload } from './DocumentDownload' ;
19
20
export { default as DocumentTextGradientComponent } from './DocumentTextGradientComponent' ;
20
21
export { default as EyeCloseComponent } from './EyeCloseComponent' ;
@@ -29,6 +30,7 @@ export { default as HappyEmojiComponent } from './HappyEmojiComponent';
29
30
export { default as HardwareWalletComponent } from './HardwareWalletComponent' ;
30
31
export { default as InfoGradientComponent } from './InfoGradientComponent' ;
31
32
export { default as InfoComponent } from './InfoComponent' ;
33
+ export { default as Key } from './Key' ;
32
34
export { default as LaceGradientComponent } from './LaceGradientComponent' ;
33
35
export { default as LaceLogoComponent } from './LaceLogoComponent' ;
34
36
export { default as LightBulbGradientComponent } from './LightBulbGradientComponent' ;
You can’t perform that action at this time.
0 commit comments