@rws-air/webcomponents
Version:
Standard Webcomponents for AIR projects
21 lines • 510 B
TypeScript
import { TextFieldProps } from 'formik-mui';
import { FC } from 'react';
/**
* Constructs a TextField with the formik validation
* @param props Props to pass to the Textield component
* @example
* ```jsx
* <Field
* component={TextField}
* name='name'
* type='text'
* label='Example'
* placeholder='Example placeholder'
* variant='outlined'
* data-qa='exampleDataQA'
* required
* />
* ```
*/
export declare const TextField: FC<TextFieldProps>;
//# sourceMappingURL=index.d.ts.map