Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 30 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | export default { |
||
2 | base: { |
||
3 | padding: 10, |
||
4 | fontSize: 18, |
||
5 | minWidth: 150, |
||
6 | cursor: 'pointer', |
||
7 | position: 'relative', |
||
8 | textDecoration: 'none', |
||
9 | border: '1px solid #333' |
||
10 | }, |
||
11 | primary: { |
||
12 | color: '#333', |
||
13 | backgroundColor: '#FFF' |
||
14 | }, |
||
15 | secondary: { |
||
16 | color: '#FFF', |
||
17 | backgroundColor: '#333' |
||
18 | }, |
||
19 | rounded: (size) => { |
||
20 | return { |
||
21 | borderRadius: size || 60 |
||
22 | }; |
||
23 | }, |
||
24 | block: { |
||
25 | borderRadius: 0 |
||
26 | }, |
||
27 | iconContainer: { |
||
28 | margin: '0 0 0 10px' |
||
29 | } |
||
30 | }; |