cloudhub-components
Version:
Various components to use in react projects
42 lines (40 loc) • 779 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = Lists;
// ----------------------------------------------------------------------
function Lists(_ref) {
var theme = _ref.theme;
return {
MuiListItemIcon: {
styleOverrides: {
root: {
color: 'inherit',
minWidth: 'auto',
marginRight: 16
}
}
},
MuiListItemAvatar: {
styleOverrides: {
root: {
minWidth: 'auto',
marginRight: 16
}
}
},
MuiListItemText: {
styleOverrides: {
root: {
marginTop: 0,
marginBottom: 0
},
multiline: {
marginTop: 0,
marginBottom: 0
}
}
}
};
}