import * as React from "react"; import { TextInput } from "react-native"; /** * This import is used by the Svelte SDK. Do not remove. */ export interface FormInputProps { type?: string; attributes?: any; name?: string; value?: string; placeholder?: string; defaultValue?: string; required?: boolean; } import { isEditing } from "../../../functions/is-editing"; import { filterAttrs } from "../../helpers"; import { setAttrs } from "../../helpers"; function FormInputComponent(props: FormInputProps) { return ( ); } export default FormInputComponent;