UNPKG

@krowdy-ui/views

Version:

React components that implement Google's Material Design.

18 lines (13 loc) 401 B
import { TextFieldClassKey, TextFieldProps } from '@material-ui/core' interface Classes { filled: string; unPadding: string; unPaddingInput: string; } export type ReferentInputProps = TextFieldProps & { classes?: TextFieldClassKey & Classes; filled?: boolean; unPadding?: boolean; }; declare const ReferentInput: React.ComponentType<ReferentInputProps>; export default ReferentInput;