Skip to content

Commit

Permalink
Update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
afonsobspinto committed Jul 22, 2022
1 parent d0e2e22 commit aece67f
Showing 1 changed file with 90 additions and 0 deletions.
90 changes: 90 additions & 0 deletions dist/theme.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
declare type ThemeVars = {
[key: string]: any;
};
declare const _default: (customVariables: ThemeVars) => {
components: {
MuiCssBaseline: {
styleOverrides: string;
};
MuiList: {
styleOverrides: {
root: {
'&.customSwitch': {
padding: string;
background: any;
borderRadius: string;
display: string;
'& .MuiListItemButton-root': {
padding: string;
borderRadius: string;
width: string;
display: string;
alignItems: string;
justifyContent: string;
'&:not(:last-child)': {
marginBottom: string;
};
'&.Mui-disabled': {
opacity: number;
};
'&.Mui-selected': {
background: any;
boxShadow: any;
border: string;
'& .MuiTypography-root': {
color: any;
};
};
};
'& .MuiChip-root': {
marginLeft: string;
};
'& .MuiTypography-root': {
fontWeight: number;
fontSize: string;
lineHeight: string;
letterSpacing: string;
color: any;
margin: number;
};
};
};
};
};
MuiListItemIcon: {
styleOverrides: {
root: {
minWidth: string;
};
};
};
MuiListItemButton: {
styleOverrides: {
root: {
padding: number;
width: string;
height: string;
borderRadius: string;
justifyContent: string;
backgroundColor: any;
'&:hover': {
backgroundColor: any;
};
'&:not(:last-child)': {
marginBottom: string;
};
'&.Mui-selected': {
backgroundColor: any;
'&:hover': {
backgroundColor: any;
};
};
'&.Mui-disabled': {
opacity: number;
};
};
};
};
};
};
export default _default;

0 comments on commit aece67f

Please sign in to comment.