main
Last change
on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago |
add customer
|
-
Property mode
set to
100644
|
File size:
689 bytes
|
Line | |
---|
1 | import { Theme } from '@mui/material/styles';
|
---|
2 |
|
---|
3 | // ----------------------------------------------------------------------
|
---|
4 |
|
---|
5 | export function list(theme: Theme) {
|
---|
6 | return {
|
---|
7 | MuiListItemIcon: {
|
---|
8 | styleOverrides: {
|
---|
9 | root: {
|
---|
10 | color: 'inherit',
|
---|
11 | minWidth: 'auto',
|
---|
12 | marginRight: theme.spacing(2),
|
---|
13 | },
|
---|
14 | },
|
---|
15 | },
|
---|
16 | MuiListItemAvatar: {
|
---|
17 | styleOverrides: {
|
---|
18 | root: {
|
---|
19 | minWidth: 'auto',
|
---|
20 | marginRight: theme.spacing(2),
|
---|
21 | },
|
---|
22 | },
|
---|
23 | },
|
---|
24 | MuiListItemText: {
|
---|
25 | styleOverrides: {
|
---|
26 | root: {
|
---|
27 | margin: 0,
|
---|
28 | },
|
---|
29 | multiline: {
|
---|
30 | margin: 0,
|
---|
31 | },
|
---|
32 | },
|
---|
33 | },
|
---|
34 | };
|
---|
35 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.