最近Material UI开发了'Alert'组件。
一切都很好,excpet他的事实,我不认为有办法改变图标大小。
这是我的代码:
<Snackbar open={true}>
<Alert
className={classes.cookieAlert}
severity="info"
action={<Button color="inherit" size="small">OK</Button>}
>
We use cookies to ensure you the best experience on our website.
</Alert>
</Snackbar>
图标由“严重性”定义,如何更改其大小?我不想覆盖图标,只是将其大小更改为更大。
1条答案
按热度按时间lfapxunr1#
图标的大小由字体大小控制。下面是一个基于您的代码的示例,它显示了一种自定义此的方法。
参考文献:
MuiAlert-icon
):https://material-ui.com/api/alert/#cssAlert
的源代码,显示如何设置图标的默认字体大小:https://github.com/mui-org/material-ui/blob/v4.9.0/packages/material-ui-lab/src/Alert/Alert.js#L128