@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
103 lines (102 loc) • 3.56 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
[x: number]: {
padding: any;
};
border: string;
borderRadius: string;
padding: any;
backgroundColor: any;
'& .SCCourseUsersTable-search': {
'& > .MuiInputBase-root': {
borderBottomLeftRadius: string;
borderBottomRightRadius: string;
};
'& .SCCourseUsersTable-end-adornment-wrapper': {
flexDirection: string;
'& .SCCourseUsersTable-search-button': {
minWidth: string;
width: string;
height: string;
padding: any;
};
};
};
'& .SCCourseUsersTable-avatar-wrapper': {
flexDirection: string;
alignItems: string;
gap: any;
'& .MuiAvatar-root': {
width: string;
height: string;
};
};
'& .SCCourseUsersTable-progress-wrapper': {
flexDirection: string;
alignItems: string;
gap: string;
'& .SCCourseUsersTable-progress': {
[x: number]: {
display: string;
};
width: string;
borderRadius: string;
backgroundColor: any;
};
};
'& .SCCourseUsersTable-request-button-wrapper': {
flexDirection: string;
gap: string;
};
'& .SCCourseUsersTable-loading-button': {
marginTop: any;
marginLeft: any;
};
};
skeletonRoot: ({ theme }: {
theme: any;
}) => {
paddingTop: any;
};
dialogRoot: ({ theme }: {
theme: any;
}) => {
'& .MuiDialogContent-root': {
[x: number]: {
paddingBottom: string;
};
'& .SCCourseUsersTable-content-wrapper': {
[x: number]: {
marginTop: string;
};
gap: any;
'& .SCCourseUsersTable-info-outer-wrapper': {
gap: string;
border: string;
borderRadius: string;
padding: any;
'& .SCCourseUsersTable-info-inner-wrapper': {
flexDirection: string;
alignItems: string;
justifyContent: string;
marginBottom: any;
'& .SCCourseUsersTable-avatar-wrapper': {
flexDirection: string;
alignItems: string;
gap: any;
'& .SCCourseUsersTable-avatar': {
width: string;
height: string;
};
};
};
};
};
};
};
};
};
export default Component;