File tree Expand file tree Collapse file tree 11 files changed +101
-0
lines changed Expand file tree Collapse file tree 11 files changed +101
-0
lines changed Original file line number Diff line number Diff line change @@ -40,11 +40,17 @@ export const typography = recipe({
40
40
color : {
41
41
primary : sx ( { color : '$text_primary' } ) ,
42
42
secondary : sx ( { color : '$text_secondary' } ) ,
43
+ grey : sx ( { color : '$text_grey' } ) ,
43
44
accent : sx ( { color : '$text_accent' } ) ,
44
45
highlight : sx ( { color : '$data_blue' } ) ,
45
46
success : sx ( { color : '$data_green' } ) ,
46
47
error : sx ( { color : '$data_pink' } ) ,
47
48
warning : sx ( { color : '$data_orange' } ) ,
49
+ laceGradient : sx ( {
50
+ backgroundImage : '$text_gradient' ,
51
+ WebkitBackgroundClip : 'text' ,
52
+ WebkitTextFillColor : 'transparent' ,
53
+ } ) ,
48
54
} ,
49
55
} ,
50
56
} ) ;
Original file line number Diff line number Diff line change @@ -172,6 +172,8 @@ export const colors = {
172
172
$text_secondary : '' ,
173
173
$text_on_gradient : '' ,
174
174
$text_accent : '' ,
175
+ $text_grey : '' ,
176
+ $text_gradient : '' ,
175
177
176
178
$metadata_secondary_label_color : '' ,
177
179
Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ export const spacing = {
28
28
$116 : '116px' ,
29
29
$120 : '120px' ,
30
30
$148 : '148px' ,
31
+ $160 : '160px' ,
31
32
$214 : '214px' ,
33
+ $235 : '235px' ,
32
34
$294 : '294px' ,
33
35
$312 : '312px' ,
34
36
$336 : '336px' ,
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,8 @@ 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_grey : darkColorScheme . $primary_grey ,
248
+ $text_gradient : laceGradient ,
247
249
248
250
$metadata_secondary_label_color : darkColorScheme . $primary_light_grey ,
249
251
Original file line number Diff line number Diff line change @@ -265,6 +265,8 @@ 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_grey : lightColorScheme . $primary_grey ,
269
+ $text_gradient : laceGradient ,
268
270
269
271
$metadata_secondary_label_color : lightColorScheme . $primary_dark_grey ,
270
272
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,13 +41,15 @@ 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' ;
47
48
export { default as PencilOutlineComponent } from './PencilOutlineComponent' ;
48
49
export { default as PlainCircleComponent } from './PlainCircleComponent' ;
49
50
export { default as PlusCircleGradientComponent } from './PlusCircleGradientComponent' ;
50
51
export { default as PlusCircleComponent } from './PlusCircleComponent' ;
52
+ export { default as PlusIconGradientComponent } from './PlusIconGradientComponent' ;
51
53
export { default as PlusSmallComponent } from './PlusSmallComponent' ;
52
54
export { default as PrinterComponent } from './PrinterComponent' ;
53
55
export { default as QrcodeComponent } from './QrcodeComponent' ;
You can’t perform that action at this time.
0 commit comments