-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] Added TS demos for customization/globals
- Loading branch information
Showing
2 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import React from 'react'; | ||
import { createMuiTheme, ThemeProvider } from '@material-ui/core/styles'; | ||
import Button from '@material-ui/core/Button'; | ||
|
||
const theme = createMuiTheme({ | ||
props: { | ||
// Name of the component ⚛️ | ||
MuiButtonBase: { | ||
// The default props to change | ||
disableRipple: true, // No more ripple, on the whole application 💣! | ||
}, | ||
}, | ||
}); | ||
|
||
function DefaultProps() { | ||
return ( | ||
<ThemeProvider theme={theme}> | ||
<Button>Change default props</Button> | ||
</ThemeProvider> | ||
); | ||
} | ||
|
||
export default DefaultProps; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import React from 'react'; | ||
import { createMuiTheme, ThemeProvider } from '@material-ui/core/styles'; | ||
import Button from '@material-ui/core/Button'; | ||
|
||
const theme = createMuiTheme({ | ||
overrides: { | ||
// Style sheet name ⚛️ | ||
MuiButton: { | ||
// Name of the rule | ||
text: { | ||
// Some CSS | ||
background: 'linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%)', | ||
borderRadius: 3, | ||
border: 0, | ||
color: 'white', | ||
height: 48, | ||
padding: '0 30px', | ||
boxShadow: '0 3px 5px 2px rgba(255, 105, 135, .3)', | ||
}, | ||
}, | ||
}, | ||
}); | ||
|
||
function OverridesCss() { | ||
return ( | ||
<ThemeProvider theme={theme}> | ||
<Button>Overrides CSS</Button> | ||
</ThemeProvider> | ||
); | ||
} | ||
|
||
export default OverridesCss; |