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

# Axis

> Specifies the axis or axes for scrolling and layout direction.

```typescript theme={null}
type Axis = "horizontal" | "vertical" | "both";
```

<ParamField path="horizontal" type="string">
  The horizontal axis. Content flows or scrolls left to right (or right to left in RTL).
</ParamField>

<ParamField path="vertical" type="string">
  The vertical axis. Content flows or scrolls top to bottom.
</ParamField>

<ParamField path="both" type="string">
  Both horizontal and vertical axes.
</ParamField>
