Skip to content

Instantly share code, notes, and snippets.

@chadmuro
Created September 16, 2021 23:24
Show Gist options
  • Save chadmuro/6bfe3fe0e0e5c6b10632b30b0dd805e8 to your computer and use it in GitHub Desktop.
Save chadmuro/6bfe3fe0e0e5c6b10632b30b0dd805e8 to your computer and use it in GitHub Desktop.
MUI variant theme
const theme = createTheme({
components: {
MuiButton: {
variants: [
{
props: { variant: 'dashed' },
style: {
textTransform: 'none',
border: `2px dashed grey${blue[500]}`,
},
},
{
props: { variant: 'dashed', color: 'secondary' },
style: {
border: `4px dashed ${red[500]}`,
},
},
],
},
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment