File tree Expand file tree Collapse file tree 10 files changed +95
-0
lines changed Expand file tree Collapse file tree 10 files changed +95
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,11 @@ export const typography = recipe({
45
45
success : sx ( { color : '$data_green' } ) ,
46
46
error : sx ( { color : '$data_pink' } ) ,
47
47
warning : sx ( { color : '$data_orange' } ) ,
48
+ laceGradient : sx ( {
49
+ backgroundImage : '$text_gradient' ,
50
+ WebkitBackgroundClip : 'text' ,
51
+ WebkitTextFillColor : 'transparent' ,
52
+ } ) ,
48
53
} ,
49
54
} ,
50
55
} ) ;
Original file line number Diff line number Diff line change @@ -172,6 +172,7 @@ export const colors = {
172
172
$text_secondary : '' ,
173
173
$text_on_gradient : '' ,
174
174
$text_accent : '' ,
175
+ $text_gradient : '' ,
175
176
176
177
$metadata_secondary_label_color : '' ,
177
178
Original file line number Diff line number Diff line change @@ -105,6 +105,8 @@ const colorProperties = defineProperties({
105
105
borderImageSource : vars . colors ,
106
106
backgroundImage : vars . colors ,
107
107
backgroundColor : vars . colors ,
108
+ WebkitBackgroundClip : [ 'text' ] ,
109
+ WebkitTextFillColor : [ 'transparent' ] ,
108
110
} ,
109
111
} ) ;
110
112
Original file line number Diff line number Diff line change @@ -244,6 +244,7 @@ const colors: Colors = {
244
244
$text_secondary : darkColorScheme . $primary_light_grey ,
245
245
$text_on_gradient : darkColorScheme . $primary_white ,
246
246
$text_accent : darkColorScheme . $primary_accent_purple ,
247
+ $text_gradient : laceGradient ,
247
248
248
249
$metadata_secondary_label_color : darkColorScheme . $primary_light_grey ,
249
250
Original file line number Diff line number Diff line change @@ -265,6 +265,7 @@ const colors: Colors = {
265
265
$text_secondary : lightColorScheme . $primary_dark_grey ,
266
266
$text_on_gradient : lightColorScheme . $primary_white ,
267
267
$text_accent : lightColorScheme . $primary_accent_purple ,
268
+ $text_gradient : laceGradient ,
268
269
269
270
$metadata_secondary_label_color : lightColorScheme . $primary_dark_grey ,
270
271
Original file line number Diff line number Diff line change
1
+ import * as React from 'react' ;
2
+ import type { SVGProps } from 'react' ;
3
+ const SvgLockIconGradientcomponent = ( props : SVGProps < SVGSVGElement > ) => (
4
+ < svg
5
+ xmlns = "http://www.w3.org/2000/svg"
6
+ width = { 29 }
7
+ height = { 32 }
8
+ fill = "none"
9
+ { ...props }
10
+ >
11
+ < path
12
+ stroke = "url(#lock-icon-gradient_component_svg__a)"
13
+ strokeLinecap = "round"
14
+ strokeWidth = { 2 }
15
+ d = "M7.833 14.333V7.667a6.667 6.667 0 1 1 13.334 0M14.5 21v3.333M4.5 31h20a3.333 3.333 0 0 0 3.333-3.333v-10a3.333 3.333 0 0 0-3.333-3.334h-20a3.333 3.333 0 0 0-3.333 3.334v10A3.333 3.333 0 0 0 4.5 31Z"
16
+ />
17
+ < defs >
18
+ < linearGradient
19
+ id = "lock-icon-gradient_component_svg__a"
20
+ x1 = { - 3.713 }
21
+ x2 = { 35.401 }
22
+ y1 = { - 4.489 }
23
+ y2 = { - 1.925 }
24
+ gradientUnits = "userSpaceOnUse"
25
+ >
26
+ < stop stopColor = "#FF92DE" />
27
+ < stop offset = { 1 } stopColor = "#FDC300" />
28
+ </ linearGradient >
29
+ </ defs >
30
+ </ svg >
31
+ ) ;
32
+ export default SvgLockIconGradientcomponent ;
Original file line number Diff line number Diff line change
1
+ import * as React from 'react' ;
2
+ import type { SVGProps } from 'react' ;
3
+ const SvgPlusIconGradientcomponent = ( props : SVGProps < SVGSVGElement > ) => (
4
+ < svg
5
+ xmlns = "http://www.w3.org/2000/svg"
6
+ width = { 29 }
7
+ height = { 30 }
8
+ fill = "none"
9
+ { ...props }
10
+ >
11
+ < path
12
+ stroke = "url(#plus-icon-gradient_component_svg__a)"
13
+ strokeLinecap = "round"
14
+ strokeLinejoin = "round"
15
+ strokeWidth = { 2 }
16
+ d = "M14.5 1.667v26.666M27.833 15H1.167"
17
+ />
18
+ < defs >
19
+ < linearGradient
20
+ id = "plus-icon-gradient_component_svg__a"
21
+ x1 = { - 3.713 }
22
+ x2 = { 35.357 }
23
+ y1 = { - 3.213 }
24
+ y2 = { - 0.331 }
25
+ gradientUnits = "userSpaceOnUse"
26
+ >
27
+ < stop stopColor = "#FF92DE" />
28
+ < stop offset = { 1 } stopColor = "#FDC300" />
29
+ </ linearGradient >
30
+ </ defs >
31
+ </ svg >
32
+ ) ;
33
+ export default SvgPlusIconGradientcomponent ;
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export { default as LightBulbGradientComponent } from './LightBulbGradientCompon
41
41
export { default as LoaderDarkGradientComponent } from './LoaderDarkGradientComponent' ;
42
42
export { default as LoaderLightGradientComponent } from './LoaderLightGradientComponent' ;
43
43
export { default as LoadingComponent } from './LoadingComponent' ;
44
+ export { default as LockIconGradientComponent } from './LockIconGradientComponent' ;
44
45
export { default as MnemonicComponent } from './MnemonicComponent' ;
45
46
export { default as NewspaperGradientComponent } from './NewspaperGradientComponent' ;
46
47
export { default as PaperwalletComponent } from './PaperwalletComponent' ;
@@ -49,6 +50,7 @@ export { default as PencilOutlineComponent } from './PencilOutlineComponent';
49
50
export { default as PlainCircleComponent } from './PlainCircleComponent' ;
50
51
export { default as PlusCircleGradientComponent } from './PlusCircleGradientComponent' ;
51
52
export { default as PlusCircleComponent } from './PlusCircleComponent' ;
53
+ export { default as PlusIconGradientComponent } from './PlusIconGradientComponent' ;
52
54
export { default as PlusSmallComponent } from './PlusSmallComponent' ;
53
55
export { default as PrinterComponent } from './PrinterComponent' ;
54
56
export { default as QrcodeComponent } from './QrcodeComponent' ;
You can’t perform that action at this time.
0 commit comments