> ## 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.

# Image Picker

> Documentation for the image picker input type in section settings.

The image picker input type allows users to select an image from the media library or upload a new one.

## Properties

<ParamField path="type" type="string" required>
  Must be set to "image\_picker".
</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="info" type="string">
  Additional information shown below the image picker.
</ParamField>

<ParamField path="kiwi_extra" type="object">
  Additional properties for the image picker. 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, an image must be selected to be valid
</ParamField>

<Panel>
  <Tabs>
    <Tab title="Example">
      ```json theme={null}
      {
        "type": "image_picker",
        "id": "logo",
        "label": "Logo",
        "info": "Upload your store logo"
      }
      ```
    </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/image_picker.webp" alt="Image Picker" />
      </Frame>
    </Tab>
  </Tabs>
</Panel>
