@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
56 lines (55 loc) • 2.02 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
height: string;
width: string;
borderRadius: number;
'& .MuiCardContent-root': {
display: string;
flexDirection: string;
height: string;
padding: any;
'& .SCPrivateMessageSnippets-search-bar': {
padding: any;
'& .SCPrivateMessageSnippets-input': {
borderRadius: any;
'& .MuiInputBase-input, MuiFilledInput-input': {
padding: any;
};
'& .SCPrivateMessageSnippets-icon': {
marginRight: any;
};
};
};
'& .SCPrivateMessageSnippets-new-message-button': {
color: string;
alignSelf: string;
backgroundColor: string;
'&:hover': {
borderWidth: string;
backgroundColor: any;
};
};
'& .MuiList-root': {
flexGrow: number;
overflowY: string;
padding: any;
'& .Mui-selected': {
backgroundColor: any;
};
'& .MuiButtonBase-root, MuiListItemButton-root': {
'&:hover': {
borderRadius: string;
backgroundColor: any;
};
};
};
};
'& .MuiPaper-root, MuiCard-root, SCWidget-root, SCPrivateMessageSnippets-root, MuiCardContent-root': {
padding: any;
};
};
skeletonRoot: ({ theme }: any) => {};
};
};
export default Component;