import type { StringFormField } from '@douglasneuroinformatics/libui-form-types'; import type { Simplify } from 'type-fest'; import { Label, Select } from '#components'; import { FieldGroup } from '../FieldGroup/FieldGroup.tsx'; import type { BaseFieldComponentProps } from '../types.ts'; export type StringFieldSelectProps = Simplify< BaseFieldComponentProps & Extract, { options: object }> >; export const StringFieldSelect = ({ description, disabled, error, label, name, options, readOnly, setValue, value }: StringFieldSelectProps) => { return ( ); };