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

# Text

> Documentation for the text input type in section settings.

The text input type allows users to enter a single line of text.

## Properties

<ParamField path="type" type="string" required>
  Must be set to "text".
</ParamField>

<ParamField path="id" type="string" required>
  Unique identifier for the setting.
</ParamField>

<ParamField path="label" type="string" required>
  The label shown in the theme editor.
</ParamField>

<ParamField path="default" type="string">
  Default text value.
</ParamField>

<ParamField path="info" type="string">
  Additional information shown below the input.
</ParamField>

<ParamField path="placeholder" type="string">
  Placeholder text shown when the input is empty.
</ParamField>

<ParamField path="kiwi_extra" type="object">
  Additional properties for the text input. Currently supported:

  * `hidden`: boolean value, indicates whether this setting should be displayed in Theme Editor's configuration bar
  * `validations`: Apply validations to this setting before saving. Currently supported:
    * `required`: Boolean value. If true, this text input must be filled to be valid
</ParamField>

<Panel>
  <Tabs>
    <Tab title="Example">
      ```json theme={null}
      {
        "type": "text",
        "id": "heading",
        "label": "Heading",
        "default": "Welcome to our store",
        "placeholder": "Enter heading text",
        "info": "This text will be displayed at the top of the section"
      }
      ```
    </Tab>

    <Tab title="Result">
      <Frame>
        <img src="https://mintlify.s3.us-west-1.amazonaws.com/kiwify-81/images/en/members-area/reference/schema/fields/settings/input-types/text.webp" alt="Text" />
      </Frame>
    </Tab>
  </Tabs>
</Panel>
