import React from "react"; import * as R from "ramda"; const OnlyLabelName = ({ labelName }: { labelName?: string }) => ( ); const RequiredLabelName = ({ labelName, requiredFieldText }: { labelName?: string; requiredFieldText?: string; }) => ( ); export type InputProps = { update: any; value: string; areaClassName?: string; id?: string; labelName?: string; disabled?: boolean; readOnly?: boolean; autoComplete?: string; requiredFieldText?: string; placeholder?: string; maxLength?: number; minLength?: number; }; const TextBoxInput = ({ update, value, areaClassName = "", id = "arkTextArea", labelName = "", readOnly = false, disabled = false, autoComplete = "on", minLength = 1, maxLength = 5000, requiredFieldText = "", placeholder = "" }: InputProps) => (