运行材质UI 1.0.0-beta.24
我正在使用createMuiTheme以下方式设置新主题:
import {createMuiTheme} from 'material-ui/styles';
const theme = createMuiTheme({
typography: {
fontSize: 16
}
});
export default theme;
Run Code Online (Sandbox Code Playgroud)
我怎样才能直接访问我直接覆盖的主题?我想这样做,这是行不通的:
import {createMuiTheme} from 'material-ui/styles';
const theme = createMuiTheme({
typography: {
fontSize: theme.typography.fontSize + 2
}
});
export default theme;
Run Code Online (Sandbox Code Playgroud)