@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
27 lines (26 loc) • 824 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: {
theme: any;
}) => {
'& .SCCourseCompletedDialog-wrapper': {
alignItems: string;
'& .SCCourseCompletedDialog-contrast-color': {
color: string;
};
'& .SCCourseCompletedDialog-title': {
marginTop: string;
marginBottom: string;
};
'& .SCCourseCompletedDialog-description-pt1': {
marginTop: string;
};
'& .SCCourseCompletedDialog-description-pt2': {
marginTop: string;
marginBottom: string;
};
};
};
};
};
export default Component;