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

# Divider

> The divider block — a horizontal rule.

A horizontal line with spacing, drawn inside the bubble.

<ParamField body="type" type="string" required>
  `"divider"`
</ParamField>

```json theme={null}
{ "type": "divider" }
```

No other fields. Anything extra is removed.

## With other blocks

A divider splits one bubble into sections — answer above, fine print below:

```json theme={null}
{
  "blocks": [
    { "type": "text", "text": "**Refund processed.** $42.00 is on its way back to your card." },
    { "type": "divider" },
    { "type": "text", "text": "Refunds usually take 3–5 business days to show on your statement." }
  ]
}
```

Between blocks it stretches the full width of the bubble. Sent on its own it still shows — a short line in its own small bubble.

<Note>
  A divider separates blocks **inside** one bubble. To break a reply into separate bubbles, send [multiple messages](/block-kit/overview#the-standard-shape) instead.
</Note>
