> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tappify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# TapInputProps

> The props TapInput takes: the single-line set, or the textarea set behind multiline.

```ts theme={null}
type TapInputProps = 
  | {
  multiline?: false;
} & TapSingleLineInputProps
  | {
  multiline: true;
} & TapTextareaProps;
```

The props `TapInput` takes: the single-line set, or the textarea set behind
`multiline`.
