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

14 lines 585 B
import { TextFieldProps } from '@mui/material'; export type RORLinkedInstitutionFieldProps = { value?: string; onChange?: (value: string | undefined, rorIdentifier?: string) => void; error?: TextFieldProps['error']; }; /** * Provides a text field for entering an organization name with an autocomplete dropdown of ROR organizations, fetched from the * ROR API. * @param props * @constructor */ export default function RORInstitutionField(props: RORLinkedInstitutionFieldProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=RORInstitutionField.d.ts.map