UNPKG

z-react-dynamic-form

Version:

A dynamic form builder for React applications with various input types and validation

17 lines (16 loc) 394 B
import React from "react"; type TimeControllerProps = { name: string; label?: string; placeholder?: string; required?: boolean; disabled?: boolean; helperText?: string; min?: string; max?: string; step?: number; showSeconds?: boolean; [key: string]: any; }; declare const TimeController: React.FC<TimeControllerProps>; export default TimeController;