7 lines
190 B
TypeScript
7 lines
190 B
TypeScript
|
|
// In our repo, type declarations for icons are only added at build time
|
||
|
|
declare module '@mui/icons-material/*' {
|
||
|
|
import SvgIcon from '@mui/material/SvgIcon';
|
||
|
|
|
||
|
|
export default SvgIcon;
|
||
|
|
}
|