-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathParties.tsx
36 lines (31 loc) · 898 Bytes
/
Parties.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import React from "react";
import styled from "styled-components";
import PartiesSvg from "svgs/mini-guides/dispute-resolver/parties.svg";
import { StyledImage } from "../PageContentsTemplate";
const StyledPartiesSvg = styled(PartiesSvg)`
[class$="rect-1"] {
fill: ${({ theme }) => theme.whiteBackground};
}
[class$="rect-2"],
[class$="rect-3"],
[class$="rect-4"],
[class$="rect-5"],
[class$="rect-6"] {
stroke: ${({ theme }) => theme.stroke};
fill: ${({ theme }) => theme.whiteBackground};
}
[class$="path-1"],
[class$="path-3"],
[class$="path-5"],
[class$="path-7"] {
fill: ${({ theme }) => theme.secondaryText};
}
[class$="path-2"],
[class$="path-4"],
[class$="path-6"],
[class$="path-8"] {
fill: ${({ theme }) => theme.primaryText};
}
`;
const Parties: React.FC = () => <StyledImage as={StyledPartiesSvg} />;
export default Parties;