-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathVotingOptions.tsx
40 lines (35 loc) · 1.01 KB
/
VotingOptions.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
37
38
39
40
import React from "react";
import styled from "styled-components";
import VotingOptionsSvg from "svgs/mini-guides/dispute-resolver/voting-options.svg";
import { StyledImage } from "../PageContentsTemplate";
const StyledVotingOptionsSvg = styled(VotingOptionsSvg)`
[class$="rect-1"] {
fill: ${({ theme }) => theme.whiteBackground};
}
[class$="rect-2"],
[class$="rect-3"],
[class$="rect-4"],
[class$="rect-5"] {
stroke: ${({ theme }) => theme.stroke};
fill: ${({ theme }) => theme.whiteBackground};
}
[class$="circle-1"],
[class$="circle-2"],
[class$="path-8"] {
fill: ${({ theme }) => theme.primaryBlue};
}
[class$="path-1"],
[class$="path-3"],
[class$="path-5"],
[class$="path-7"] {
fill: ${({ theme }) => theme.primaryText};
}
[class$="path-2"],
[class$="path-4"],
[class$="path-6"],
[class$="path-9"] {
fill: ${({ theme }) => theme.secondaryText};
}
`;
const VotingOptions: React.FC = () => <StyledImage as={StyledVotingOptionsSvg} />;
export default VotingOptions;