Is it possible add custom objects to the "createMuiTheme"? Lets say I have a cart icon in the AppBar, can I some how inject this so that it is available in the "createMuiTheme"?
Something like this:
const theme = createMuiTheme({
custom: {
CartIcon: {
color: "#333"
}
}
});