UNPKG

@boxyhq/react-ui

Version:

React UI components from BoxyHQ

19 lines (18 loc) 560 B
type SecretInputFormControlProps = { label: string; value?: string; id: string; placeholder?: string; required?: boolean; maxLength?: string; readOnly: boolean; copyDoneCallback?: (info: { operation: "COPY"; }) => void; handleChange: (event: Event) => void; classNames?: { input?: string; }; } & JSX.InputHTMLAttributes<HTMLInputElement>; declare function SecretInputFormControl(props: SecretInputFormControlProps): import("react/jsx-runtime").JSX.Element; export default SecretInputFormControl;