File tree Expand file tree Collapse file tree 26 files changed +725
-75
lines changed
assets/svgs/mini-guides/dispute-resolver Expand file tree Collapse file tree 26 files changed +725
-75
lines changed Original file line number Diff line number Diff line change 77
77
"@cyntler/react-doc-viewer" : " ^1.16.3" ,
78
78
"@filebase/client" : " ^0.0.5" ,
79
79
"@kleros/kleros-sdk" : " workspace:^" ,
80
- "@kleros/ui-components-library" : " ^2.12 .0" ,
80
+ "@kleros/ui-components-library" : " ^2.14 .0" ,
81
81
"@lifi/widget" : " ^2.10.1" ,
82
82
"@middy/core" : " ^5.3.2" ,
83
83
"@middy/http-json-body-parser" : " ^5.3.2" ,
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import styled from "styled-components" ;
3
+
4
+ import ParametersSvg from "svgs/mini-guides/dispute-resolver/parameters.svg" ;
5
+
6
+ import { StyledImage } from "../PageContentsTemplate" ;
7
+
8
+ const StyledParametersSvg = styled ( ParametersSvg ) `
9
+ [class$="rect-1"],
10
+ [class$="rect-3"],
11
+ [class$="rect-7"],
12
+ [class$="path-3"] {
13
+ fill: ${ ( { theme } ) => theme . whiteBackground } ;
14
+ }
15
+ [class$="rect-2"],
16
+ [class$="rect-6"],
17
+ [class$="rect-8"] {
18
+ stroke: ${ ( { theme } ) => theme . stroke } ;
19
+ }
20
+ [class$="rect-4"] {
21
+ stroke: ${ ( { theme } ) => theme . primaryBlue } ;
22
+ }
23
+ [class$="rect-5"],
24
+ [class$="path-2"] {
25
+ fill: ${ ( { theme } ) => theme . primaryBlue } ;
26
+ }
27
+ [class$="path-1"],
28
+ [class$="path-4"],
29
+ [class$="path-7"],
30
+ [class$="path-8"] {
31
+ fill: ${ ( { theme } ) => theme . primaryText } ;
32
+ }
33
+ [class$="path-5"] {
34
+ fill: ${ ( { theme } ) => theme . stroke } ;
35
+ }
36
+ [class$="path-6"] {
37
+ fill: ${ ( { theme } ) => theme . secondaryPurple } ;
38
+ }
39
+ ` ;
40
+
41
+ const Parameters : React . FC = ( ) => < StyledImage as = { StyledParametersSvg } /> ;
42
+
43
+ export default Parameters ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import styled from "styled-components" ;
3
+
4
+ import PartiesSvg from "svgs/mini-guides/dispute-resolver/parties.svg" ;
5
+
6
+ import { StyledImage } from "../PageContentsTemplate" ;
7
+
8
+ const StyledPartiesSvg = styled ( PartiesSvg ) `
9
+ [class$="rect-1"] {
10
+ fill: ${ ( { theme } ) => theme . whiteBackground } ;
11
+ }
12
+ [class$="rect-2"],
13
+ [class$="rect-3"],
14
+ [class$="rect-4"],
15
+ [class$="rect-5"],
16
+ [class$="rect-6"] {
17
+ stroke: ${ ( { theme } ) => theme . stroke } ;
18
+ fill: ${ ( { theme } ) => theme . whiteBackground } ;
19
+ }
20
+ [class$="path-1"],
21
+ [class$="path-3"],
22
+ [class$="path-5"],
23
+ [class$="path-7"] {
24
+ fill: ${ ( { theme } ) => theme . secondaryText } ;
25
+ }
26
+ [class$="path-2"],
27
+ [class$="path-4"],
28
+ [class$="path-6"],
29
+ [class$="path-8"] {
30
+ fill: ${ ( { theme } ) => theme . primaryText } ;
31
+ }
32
+ ` ;
33
+
34
+ const Parties : React . FC = ( ) => < StyledImage as = { StyledPartiesSvg } /> ;
35
+
36
+ export default Parties ;
Original file line number Diff line number Diff line change
1
+ import React from "react" ;
2
+ import styled from "styled-components" ;
3
+
4
+ import PolicySvg from "svgs/mini-guides/dispute-resolver/policy.svg" ;
5
+
6
+ import { StyledImage } from "../PageContentsTemplate" ;
7
+
8
+ const StyledPolicySvg = styled ( PolicySvg ) `
9
+ [class$="rect-1"] {
10
+ fill: ${ ( { theme } ) => theme . whiteBackground } ;
11
+ }
12
+ [class$="rect-2"] {
13
+ stroke: ${ ( { theme } ) => theme . stroke } ;
14
+ }
15
+ [class$="rect-3"] {
16
+ fill: ${ ( { theme } ) => theme . mediumBlue } ;
17
+ stroke: ${ ( { theme } ) => theme . primaryBlue } ;
18
+ }
19
+ [class$="path-1"],
20
+ [class$="path-3"] {
21
+ fill: ${ ( { theme } ) => theme . primaryText } ;
22
+ }
23
+ [class$="path-2"],
24
+ [class$="path-4"] {
25
+ fill: ${ ( { theme } ) => theme . primaryBlue } ;
26
+ }
27
+ ` ;
28
+
29
+ const Policy : React . FC = ( ) => < StyledImage as = { StyledPolicySvg } /> ;
30
+
31
+ export default Policy ;
You can’t perform that action at this time.
0 commit comments