目前,使用
"react": "^17.0.2",
@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/styles": "^4.11.4",
在Material UI主题中的“Typography”内添加自定义新属性“tab”时出现Typescript类型错误
错误:属性“tab”在类型“Typography”上不存在
它在theme.tsx文件中工作正常
主题.tsx文件
declare module "@material-ui/core/styles/createTypography" {
interface TypographyOptions {
tab?: {
fontFamily?: string;
textTransform?: string;
fontWeight?: number;
fontSize?: string;
};
}
}
const theme = createTheme({
typography: {
tab: {
fontFamily: "Raleway",
textTransform: "none",
fontWeight: 700,
fontSize: "1rem",
},
},
});
在另一个typescript组件上,我得到属性'tab'错误类型'Typography'上不存在属性'tab'
const useStyles = makeStyles((theme) => ({
tab: {
...theme.typography.tab, // error: Property 'tab' does not exist on type 'Typography'
minWidth: 10,
marginLeft: "25px",
},
}));
那么如何获得新的自定义主题 prop 呢?
1条答案
按热度按时间polkgigr1#
正确的主题设置。