UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

16 lines (15 loc) 543 B
import React from 'react'; import { ScreenConfig, Styles, Handlers } from '../types'; export interface InputButtonProps { config: ScreenConfig; labelConfig: ScreenConfig; handlers: Handlers; label?: string; value: string; isRequired?: boolean; style?: Styles; labelStyle?: Styles; showOptionalLabel?: boolean; } declare const InputButton: ({ config, handlers, label, value, isRequired, style, labelStyle, labelConfig, showOptionalLabel }: InputButtonProps) => React.JSX.Element; export default InputButton;