@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
46 lines (45 loc) • 1.63 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': {
alignSelf: string;
};
'& .MuiList-root': {
flexGrow: number;
overflowY: string;
padding: any;
'& .MuiButtonBase-root, MuiListItemButton-root': {
'&:hover': {
borderRadius: string;
};
};
};
};
'& .MuiPaper-root, MuiCard-root, SCWidget-root, SCPrivateMessageSnippets-root, MuiCardContent-root': {
padding: any;
};
};
skeletonRoot: ({ theme }: any) => {};
};
};
export default Component;