<ThemeProvider theme={theme}>
My goal is to utilize two themes simultaneously on a single DOM element using a theme provider.
style={theme.flexRowLeft}
Struggling with incorporating multiple themes at once, I am currently restricted to applying only one theme to an element and unsure of how to proceed.
const theme = createMuiTheme({
flexRow: {
display: "flex",
flexDirection: "row",
alignItems: "center",
},
justifyRight: {
justifyContent: "right",
},
});
I am seeking guidance on how to combine the properties of flexRow and justifyRight within my theme configuration.
Utilizing Material-UI's themeprovider in my project.