17 lines
363 B
TypeScript
Executable File
17 lines
363 B
TypeScript
Executable File
import { Theme } from '@mui/material/styles';
|
|
|
|
// ----------------------------------------------------------------------
|
|
|
|
export default function Breadcrumbs(theme: Theme) {
|
|
return {
|
|
MuiBreadcrumbs: {
|
|
styleOverrides: {
|
|
separator: {
|
|
marginLeft: theme.spacing(2),
|
|
marginRight: theme.spacing(2)
|
|
}
|
|
}
|
|
}
|
|
};
|
|
}
|