@nodata/render
Version:
Allows to dynamically render nodata components
67 lines (66 loc) • 1.69 kB
TypeScript
declare const _default: {
palette: {
primary: {
main: string;
};
action: {
hover: string;
};
};
overrides: {
MuiCheckbox: {
colorSecondary: {
color: string;
'&$checked': {
color: string;
};
};
};
MuiRadio: {
colorSecondary: {
color: string;
'&$checked': {
color: string;
};
};
};
MuiMenuItem: {
root: {
'&:hover:not($selected)': {
backgroundColor: string;
color: string;
};
'&$selected': {
backgroundColor: string;
};
};
};
MuiInput: {
underline: {
'&:after': {
borderBottom: string;
};
'&$focused:after': {
borderBottomColor: string;
};
'&$error:after': {
borderBottomColor: string;
};
'&:before': {
borderBottom: string;
};
'&:hover:not($disabled):not($focused):not($error):before': {
borderBottom: string;
};
'&$disabled:before': {
borderBottom: string;
};
};
};
};
typography: {
fontFamily: string;
useNextVariants: boolean;
};
};
export default _default;