@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
17 lines (16 loc) • 429 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
'& .SCLanguageSwitcher-label': {
fontWeight: any;
};
'& .MuiInputBase-root': {
textTransform: string;
};
'& fieldset.MuiOutlinedInput-notchedOutline': {
borderWidth: number;
};
};
};
};
export default Component;