18 lines
338 B
TypeScript
Executable File
18 lines
338 B
TypeScript
Executable File
import { Theme } from '@mui/material/styles';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
export default function Badge(theme: Theme) {
|
|
return {
|
|
MuiBadge: {
|
|
styleOverrides: {
|
|
dot: {
|
|
width: 10,
|
|
height: 10,
|
|
borderRadius: '50%'
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|