import { FieldValues, FormStore, ResponseData } from "@modular-forms/solid"; import { Show, type JSX } from "solid-js"; import cx from "classnames"; interface TextInputProps { formStore: FormStore; value: string; inputProps: JSX.InputHTMLAttributes; label: JSX.Element; error?: string; required?: boolean; type?: string; inlineLabel?: JSX.Element; class?: string; adornment?: { position: "start" | "end"; content: JSX.Element; }; placeholder?: string; } export function TextInput( props: TextInputProps, ) { return ( ); }