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

# Edge

> Specifies individual edges or edge groups for layout operations like padding and insets.

```typescript theme={null}
type Edge = "top" | "leading" | "bottom" | "trailing" | "horizontal" | "vertical" | "all";
```

<ParamField path="top" type="string">
  The top edge of the view.
</ParamField>

<ParamField path="leading" type="string">
  The leading edge (left in LTR, right in RTL).
</ParamField>

<ParamField path="bottom" type="string">
  The bottom edge of the view.
</ParamField>

<ParamField path="trailing" type="string">
  The trailing edge (right in LTR, left in RTL).
</ParamField>

<ParamField path="horizontal" type="string">
  Both leading and trailing edges.
</ParamField>

<ParamField path="vertical" type="string">
  Both top and bottom edges.
</ParamField>

<ParamField path="all" type="string">
  All four edges.
</ParamField>
