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

# <AttioUserCombobox />

> A combobox input for selecting Attio workspace users.

<img className="dark:hidden" width="720" height="440" noZoom src="https://mintcdn.com/attio/6iYi7YnGZIZchWq2/images/attio-user-combobox.png?fit=max&auto=format&n=6iYi7YnGZIZchWq2&q=85&s=7bf14ba931702c621c0c9cfc2e31180b" data-path="images/attio-user-combobox.png" />

<img className="hidden dark:block" width="720" height="440" noZoom src="https://mintcdn.com/attio/6iYi7YnGZIZchWq2/images/attio-user-combobox-dark.png?fit=max&auto=format&n=6iYi7YnGZIZchWq2&q=85&s=125777bcab229bda454df3c1a6363ce3" data-path="images/attio-user-combobox-dark.png" />

<Note>
  This component is returned by
  [`useWorkspaceSettingsForm()`](../../settings/use-workspace-settings-form).
</Note>

## Example

```tsx workspace-settings.tsx theme={"system"}
import React from "react"
import {useWorkspaceSettingsForm} from "attio/client"
import type {App} from "attio"

export const workspaceSettings: App.Settings.Workspace = {
  Page,
}

function Page() {
  const {Form, TextInput, AttioUserCombobox} = useWorkspaceSettingsForm()

  return (
    <Form>
      <TextInput label="Project name" name="project_name" />
      <TextInput label="Environment" name="environment" />
      <AttioUserCombobox label="Default assignee" name="default_assignee_id" />
    </Form>
  )
}
```

## Props

<ParamField path="label" type="string" required>
  The label of the Attio workspace user combobox input field.
</ParamField>

<ParamField path="name" type="string" required>
  The path to the `string` value of the input field in your [settings
  schema](../../settings/app-settings-schema). e.g. `"default_assignee_id"`, `"sync.owner_id"`
</ParamField>

<ParamField path="disabled" type="boolean">
  Whether or not the field should be disabled.

  Defaults to `false` (not disabled).
</ParamField>
