mui-themes-extand
Version:
Boilerplate for extends MUI6 themes
36 lines (35 loc) • 954 B
TypeScript
import { Theme } from '@mui/material/styles';
export default function Alert(theme: Theme): {
MuiAlert: {
styleOverrides: {
root: {
boxShadow: string;
borderRadius: string;
};
standardWarning: {
backgroundColor: string;
icon: {
color: string;
};
};
standardError: {
backgroundColor: string;
icon: {
color: string;
};
};
standardInfo: {
backgroundColor: string;
icon: {
color: string;
};
};
standardSuccess: {
backgroundColor: string;
icon: {
color: string;
};
};
};
};
};