import type { StringFormField } from '@douglasneuroinformatics/libui-form-types'; import { Label, TextArea } from '#components'; import { FieldGroup } from '../FieldGroup/FieldGroup.tsx'; import type { BaseFieldComponentProps } from '../types.ts'; export type StringFieldTextAreaProps = BaseFieldComponentProps & Extract; export const StringFieldTextArea = ({ description, disabled, error, label, name, placeholder, readOnly, setValue, value }: StringFieldTextAreaProps) => { return (