material ui styled components with theme

Solutions on MaxInterview for material ui styled components with theme by the best coders in the world

showing results for - "material ui styled components with theme"
Maëlys
08 Jan 2018
1import { styled, withTheme } from "@material-ui/core/styles"
2import Button from "@material-ui/core/Button"
3
4export const StyledButton= styled(withTheme(Button))(props => ({
5  background: props.theme.palette.background.paper,
6}))