@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
76 lines (75 loc) • 2.61 kB
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
whiteSpace: string;
'& .SCNotificationItem-header': {
display: string;
flexDirection: string;
paddingBottom: any;
'& .SCNotificationItem-primary': {
fontWeight: any;
'& .SCContributionNotification-username': {
fontWeight: any;
};
'& a': {
color: any;
textDecoration: string;
};
};
'& .SCNotificationItem-secondary': {
'& .SCDateTimeAgo-root, & .MuiStack-root': {
color: any;
minHeight: any;
};
'& a': {
textDecoration: string;
color: any;
};
};
};
'& .SCNotificationItem-actions': {
color: any;
};
'&.SCNotificationItem-toast': {
backgroundColor: string;
borderRadius: number;
'& .SCNotificationItem-header': {
'& .SCNotificationItem-image': {
marginRight: any;
'& .MuiAvatar-root': {
width: any;
height: any;
};
};
};
};
'&.SCNotificationItem-snippet': {
backgroundColor: string;
borderRadius: number;
'& .SCNotificationItem-header': {
'& .SCNotificationItem-image': {
marginRight: any;
'& .MuiAvatar-root': {
width: any;
height: any;
};
};
};
};
'&.SCNotificationItem-detail': {
backgroundColor: string;
borderRadius: number;
'& .SCNotificationItem-header': {
'& .SCNotificationItem-image': {
marginRight: any;
'& .MuiAvatar-root': {
width: any;
height: any;
};
};
};
};
};
};
};
export default Component;