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

# <InputGroup />

> A component for grouping inputs.

<img className="dark:hidden" width="720" height="440" noZoom src="https://mintcdn.com/attio/h2PGZQg41uPwZ_J1/images/input-group.png?fit=max&auto=format&n=h2PGZQg41uPwZ_J1&q=85&s=1e60c7b2bbfab8fd6d58cf58474c3915" data-path="images/input-group.png" />

<img className="hidden dark:block" width="720" height="440" noZoom src="https://mintcdn.com/attio/h2PGZQg41uPwZ_J1/images/input-group-dark.png?fit=max&auto=format&n=h2PGZQg41uPwZ_J1&q=85&s=03b6fb41bcd187abdfb031f66b119b93" data-path="images/input-group-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"

export function WorkspaceSettings() {
  const {Form, InputGroup, NumberInput, TextInput} = useWorkspaceSettingsForm()

  return (
    <Form>
      <InputGroup>
        <TextInput label="Server region" name="server_region" />
        <NumberInput label="Timeout (seconds)" name="timeout_seconds" />
      </InputGroup>
    </Form>
  )
}
```

## Props

<ParamField path="children" type="React.ReactNode" required>
  The child inputs to be grouped.
</ParamField>
