@selfcommunity/react-theme-default
Version:
Default theme to use with SelfCommunity TS library
24 lines (23 loc) • 615 B
TypeScript
declare const Component: {
styleOverrides: {
root: ({ theme }: any) => {
width: string;
display: string;
flexDirection: string;
alignItems: string;
'& .SCProgressBar-bar': {
width: string;
height: number;
borderRadius: number;
};
'& .SCProgressBar-progress': {
marginTop: any;
h4: {
fontWeight: any;
fontSize: string;
};
};
};
};
};
export default Component;