Newer
Older
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import React from 'react'
import MuiButton, { ButtonProps } from '@material-ui/core/Button'
import {
withStyles,
MuiThemeProvider,
createMuiTheme,
} from '@material-ui/core/styles'
const primaryColor = window
.getComputedStyle(document.documentElement)
.getPropertyValue('--blue')
.trim()
const secondaryColor = window
.getComputedStyle(document.documentElement)
.getPropertyValue('--greyDark')
.trim()
const theme = createMuiTheme({
typography: {
useNextVariants: true,
},
shape: {
borderRadius: 3,
},
palette: {
primary: {
main: primaryColor,
},
secondary: {
main: secondaryColor,
},
},
})
const BaseButton = withStyles({
root: {
height: '3rem',
margin: '0.5rem 0rem',
padding: '0px 1px',
},
label: {
textTransform: 'none',
fontFamily: 'Lato, sans-serif',
fontStyle: 'normal',
fontSize: '1rem',
lineHeight: '120%',
},
})(MuiButton)
const PrimaryButton = withStyles({
root: {
background: 'var(--blueBackground)',
},
label: {
color: 'var(--textBlack)',
fontWeight: 'bold',
},
})(BaseButton)
const SecondaryButton = withStyles({
label: {
color: 'var(--textBright)',
fontWeight: 'normal',
},
})(BaseButton)
function MyButton(props: ButtonProps) {
return props.color === 'secondary' ? (
<SecondaryButton
fullWidth
color="secondary"
variant="outlined"
{...props}
/>
) : (
<PrimaryButton fullWidth color="primary" variant="contained" {...props} />
)
}
const StyledButtonValid: React.ComponentType<ButtonProps> = props => {
return (
<>
<MuiThemeProvider theme={theme}>
<MyButton {...props}>{props.children}</MyButton>
</MuiThemeProvider>
</>
)
}
StyledButtonValid.defaultProps = {
color: 'primary',
}
export default StyledButtonValid