import { cn } from "../../lib/utils" interface FormTextInputProps { value: string, name: string, onChangeHandler: React.ChangeEventHandler, type: "text" | "password" | "email", children?: React.ReactNode, className?: string, placeholder?: string } interface FormSubmitInputProps { name: string, value: string | undefined, onSubmitHandler: React.FormEventHandler | undefined, children?: React.ReactNode, className?: string } interface FormLabelProps { name: string, className?: string, title?: string } const FormLabel = (props: FormLabelProps) => { let label = (props.title == null) ? props.name.charAt(0).toUpperCase() + props.name.slice(1) : props.title; return(); } const FormTextInput = (props: FormTextInputProps) => { return( ); } const FormSubmitInput = (props: FormSubmitInputProps) => { return( {props.children} ); } export { FormTextInput, FormSubmitInput, FormLabel };