@teravn/onui
Version:
The React UI component library is based on MUI
31 lines (30 loc) • 925 B
TypeScript
import { OwnerStateThemeType } from './';
declare const Autocomplete: () => {
MuiAutocomplete: {
styleOverrides: {
root: ({ theme }: OwnerStateThemeType) => {
borderRadius: string;
background: string;
'&.Mui-disabled': {
background: string;
color: string;
};
'&::placeholder': {
color: string;
};
};
listbox: ({ theme }: OwnerStateThemeType) => {
color: string;
fontSize: string;
fontWeight: string;
lineHeight: string;
};
option: ({ theme }: OwnerStateThemeType) => {
'&.Mui-focused': {
backgroundColor: string;
};
};
};
};
};
export default Autocomplete;