import { FieldValues, FormStore, ResponseData } from "@modular-forms/solid"; import { Show } from "solid-js"; import { type JSX } from "solid-js"; import cx from "classnames"; interface SelectInputProps { formStore: FormStore; value: string; options: JSX.Element; selectProps: JSX.HTMLAttributes; label: JSX.Element; error?: string; required?: boolean; topRightLabel?: JSX.Element; class?: string; } export function SelectInput( props: SelectInputProps, ) { return ( ); }