@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
64 lines (63 loc) • 1.95 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
width: string;
display: string;
flexDirection: string;
alignItems: string;
'&.MuiPaper-elevation': {
paddingTop: any;
paddingBottom: any;
paddingLeft: any;
paddingRight: any;
'&.MuiPaper-elevation0': {
paddingTop: number;
paddingBottom: number;
paddingLeft: number;
paddingRight: number;
};
};
'& .SCBaseItem-content': {
display: string;
flexDirection: string;
justifyContent: string;
alignItems: string;
width: string;
};
'& .SCBaseItem-image': {
flexShrink: number;
marginRight: any;
};
'& .SCBaseItem-text': {
flex: string;
marginTop: any;
marginBottom: any;
textAlign: string;
width: string;
};
'& .SCBaseItem-primary': {
color: any;
};
'& .SCBaseItem-secondary': {
color: any;
};
'& .SCBaseItem-primary, & .SCBaseItem-secondary': {
whiteSpace: string;
overflow: string;
textOverflow: string;
display: string;
};
'&.SCBaseItem-with-actions': {
'& .SCBaseItem-text < *': {
maxWidth: string;
};
'& .SCBaseItem-actions': {
right: any;
top: string;
maxWidth: any;
};
};
};
};
};
export default Component;