UNPKG

@helpwave/hightide

Version:

helpwave's component and theming library

20 lines (17 loc) 629 B
import * as react_jsx_runtime from 'react/jsx-runtime'; import { InputProps } from '../user-input/Input.js'; import { ConfirmDialogProps } from './ConfirmDialog.js'; import 'react'; import '../user-input/Label.js'; import '../Button.js'; import '../../hooks/useTranslation.js'; import '../../hooks/useLanguage.js'; import './Modal.js'; type InputModalProps = ConfirmDialogProps & { inputs: InputProps[]; }; /** * A modal for receiving multiple inputs */ declare const InputModal: ({ inputs, buttonOverwrites, ...restProps }: InputModalProps) => react_jsx_runtime.JSX.Element; export { InputModal, type InputModalProps };