import React from "react"; export default function TextInput({ value, setValue, label, className, isTextArea = false, inputRef = undefined, }: { value: string; setValue: (newValue: string) => void; label: string; className?: string; isTextArea?: boolean; inputRef?: React.RefObject; }) { return (