import { FormControl, FormItem, FormMessage } from "@/components/ui/form"; import { Input } from "@/components/ui/input"; import AutoFormLabel from "../common/label"; import AutoFormTooltip from "../common/tooltip"; import type { AutoFormInputComponentProps } from "../types"; export default function AutoFormInput({ label, isRequired, fieldConfigItem, fieldProps, }: AutoFormInputComponentProps) { const { showLabel: _showLabel, ...fieldPropsWithoutShowLabel } = fieldProps; const showLabel = _showLabel === undefined ? true : _showLabel; const type = fieldProps.type || "text"; return (