Solve Warning: The elevation provided <Paper elevation={24}> is not available in the theme.
2021/10/14 23:16:16
本文主要是介绍Solve Warning: The elevation provided <Paper elevation={24}> is not available in the theme.,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
If you got the following warning:
The elevation provided <Paper elevation={24}> is not available in the theme. Please make sure that `theme.shadows[24]` is defined
In order to mitigate this, you can change your shadows to a dictionary instead of array, for example:
const theme = createMuiTheme({ shadows: { 24: '0px 11px 15px -7px red,0px 24px 38px 3px red,0px 9px 46px 8px red', }, });
Or you can initialize shadows[24] with current existing item, for example:
const theme = createMuiTheme({ shadows: [ '0px 11px 15px -7px red,0px 24px 38px 3px red,0px 9px 46px 8px red', ], }); theme.shadows[24] = theme.shadows[0];
Refereces:
https://github.com/mui-org/material-ui/issues/8289
这篇关于Solve Warning: The elevation provided <Paper elevation={24}> is not available in the theme.的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-10TiDB 8.5 LTS 发版——支持无限扩展,开启 AI 就绪新时代
- 2025-01-07SaaS工具的智能升级:AI Agent赋能的潜力与应用前景
- 2025-01-07SaaS+AI如何重新定义企业问题解决方式?
- 2025-01-04如何利用AI看板工具提升团队协作效率?10大深度评测与实用技巧
- 2025-01-03带有自反功能的自适应检索增强生成系统
- 2025-01-03FAISS向量数据库在生产LLM应用中的使用指南
- 2025-01-03掌握RAG:深入探讨文本分割技巧
- 2025-01-03深入探究结构化输出的应用技巧
- 2025-01-03因果推断的基本问题:现代视角下的统计挑战
- 2025-01-03预测的艺术:预AI时代的滤波技术讲解