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

# Checkbox

A check box people can tick in Word.

```tsx theme={"dark"}
<Paragraph>
  <Checkbox checked={item.ok} /> Guard rails installed
</Paragraph>
```

***

## Props

| Prop      | Type      | Description                    |
| --------- | --------- | ------------------------------ |
| `checked` | `boolean` | Initial state. Default `false` |

***

## In Word

The box is a check box content control: a click in Word toggles it, so checklists can be filled in or corrected after generation. Word 2010 and later show it as a check box; older readers show the ☐/☒ symbol without the click behavior.

Checklists read well in a table:

```tsx theme={"dark"}
<Table columns={["0.4in", "1fr"]}>
  {items.map((item) => (
    <Tr key={item.id}>
      <Td><Paragraph><Checkbox checked={item.ok} /></Paragraph></Td>
      <Td>{item.label}</Td>
    </Tr>
  ))}
</Table>
```
