@material-ui/core
Version:
React components that implement Google's Material Design.
16 lines (13 loc) • 341 B
JavaScript
;
var _styles = require("@material-ui/core/styles");
{
// properties of the variants can be "unset"
var theme = (0, _styles.createMuiTheme)({
typography: {
allVariants: {
fontStyle: undefined
}
}
}); // $ExpectType string | undefined
var maybeFontStyle = theme.typography.body1.fontStyle;
}