@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
42 lines • 1.08 kB
JavaScript
export default function TextField(theme) {
return {
MuiFormHelperText: {
styleOverrides: {
root: {
'&.Mui-error': {
marginTop: 0,
lineHeight: 1
}
}
}
},
MuiTextField: {
defaultProps: {
variant: 'standard'
},
styleOverrides: {
root: {
...theme.typography.defaultFont
}
}
},
MuiInput: {
styleOverrides: {
root: {
...theme.typography.defaultFont,
fontWeight: '400'
}
}
},
MuiInputLabel: {
styleOverrides: {
root: {
...theme.typography.defaultFont,
fontWeight: '400',
lineHeight: '1.42857'
}
}
}
};
}
//# sourceMappingURL=TextField.js.map