@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
28 lines (27 loc) • 810 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
backgroundColor: any;
'& .SCBottomNavigation-action': {
fontSize: string;
color: any;
borderTop: string;
minWidth: number;
'&.Mui-selected, &:hover': {
color: any;
borderTop: string;
};
'&.SCBottomNavigation-composer': {
'&.Mui-selected, &:hover': {
color: any;
borderTop: string;
};
};
};
'&.SCBottomNavigation-ios': {
paddingBottom: string;
};
};
};
};
export default Component;