Skip to content

Commit

Permalink
[docs] Added TS demos for customization/globals
Browse files Browse the repository at this point in the history
  • Loading branch information
limatgans committed Oct 8, 2019
1 parent c752244 commit 76c8de6
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/src/pages/customization/globals/DefaultProps.tsx
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;
32 changes: 32 additions & 0 deletions docs/src/pages/customization/globals/GlobalCss.tsx
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;

0 comments on commit 76c8de6

Please sign in to comment.