@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
80 lines (79 loc) • 2.76 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
marginBottom: any;
'& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child': {
[x: number]: {
padding: any;
};
padding: any;
display: string;
flexDirection: string;
justifyContent: string;
'& .SCInlineComposerWidget-input': {
display: string;
flexGrow: number;
'& .MuiButton-root': {
fontWeight: any;
letterSpacing: string;
padding: any;
'&:hover': {
color: any;
background: string;
border: string;
};
};
"& .MuiButton-text": {
justifyContent: string;
textTransform: string;
};
};
'& .SCInlineComposerWidget-avatar': {
[x: number]: {
marginLeft: any;
};
display: string;
alignItems: string;
'& .MuiAvatar-root': {
width: any;
height: any;
};
};
};
};
skeletonRoot: ({ theme }: any) => {
marginBottom: any;
'& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child': {
[x: number]: {
padding: any;
};
padding: any;
display: string;
flexDirection: string;
justifyContent: string;
'& .SCInlineComposerWidget-input': {
display: string;
flexGrow: number;
height: number;
width: string;
'& .MuiSkeleton-root': {
width: string;
height: string;
};
};
'& .SCInlineComposerWidget-avatar': {
[x: number]: {
marginLeft: any;
};
display: string;
alignItems: string;
'& .MuiSkeleton-root': {
width: any;
height: any;
};
};
};
};
};
};
export default Component;