synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
9 lines • 650 B
TypeScript
import { TextFieldProps as MuiTextFieldProps } from '@mui/material';
export type TextFieldProps = Pick<MuiTextFieldProps, 'autoComplete' | 'autoFocus' | 'disabled' | 'error' | 'fullWidth' | 'id' | 'inputProps' | 'label' | 'maxRows' | 'minRows' | 'multiline' | 'onBlur' | 'onChange' | 'placeholder' | 'required' | 'rows' | 'sx' | 'type' | 'value'> & {
noWrapInFormControl?: boolean;
};
/**
* A styled text field built using MUI components and designed to match the Sage Design System (SDS) input fields.
*/
export default function TextField(props: TextFieldProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=TextField.d.ts.map