Newer
Older
import React from 'react'
import MuiButton, { ButtonProps } from '@material-ui/core/Button'
import {
withStyles,
MuiThemeProvider,
createMuiTheme,
} from '@material-ui/core/styles'
//required to obtain color from scss because createMuiTheme doesn't support the use of var(--color)
const color = window
.getComputedStyle(document.documentElement)
.getPropertyValue('--greyDark')
.trim()
const theme = createMuiTheme({
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
shape: {
borderRadius: 2,
},
palette: {
primary: {
main: color,
},
secondary: {
main: color,
},
},
})
const BaseButton = withStyles({
root: {
minHeight: '2.5rem',
padding: '0.25rem',
},
label: {
textTransform: 'none',
fontFamily: 'Lato, sans-serif',
fontStyle: 'normal',
fontSize: '1rem',
lineHeight: '120%',
},
})(MuiButton)
const PrimaryButton = withStyles({
label: {
color: 'var(--greyDark)',
fontWeight: 'bold',
},
})(BaseButton)
const SecondaryButton = withStyles({
root: {
border: '1px solid #7B7B7B',
},
label: {
color: 'var(--greyDark)',
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 StyledClearGreyButton: React.ComponentType<ButtonProps> = props => {
return (
<>
<MuiThemeProvider theme={theme}>
<MyButton {...props}>{props.children}</MyButton>
</MuiThemeProvider>
</>
)
}
export default StyledClearGreyButton