UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

9 lines 650 B
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