diff --git a/docs/elements/pcbnotedimension.mdx b/docs/elements/pcbnotedimension.mdx
new file mode 100644
index 0000000..fd04a8f
--- /dev/null
+++ b/docs/elements/pcbnotedimension.mdx
@@ -0,0 +1,76 @@
+---
+title:
+description: The `` element adds dimension annotations to PCBs showing measurements between two points.
+---
+
+import CircuitPreview from "@site/src/components/CircuitPreview"
+
+## Overview
+
+`` lets you add dimensional annotations to your PCB design. These annotations display the distance between two points with arrows and text labels, making it easy to communicate critical measurements for manufacturing, assembly, or design review. Dimension annotations are visible in PCB previews and can be exported with fabrication outputs.
+
+## Basic Usage
+
+Below is a simple board with a dimension annotation showing the distance between two components. The dimension line connects two points and displays a label with the measurement.
+
+ (
+
+
+
+
+
+ )
+ `}
+/>
+
+## Using Selectors
+
+Instead of specifying exact coordinates, you can use selectors to reference components. The dimension will automatically point to the component's position.
+
+ (
+
+
+
+
+
+ )
+ `}
+/>
+
+## Properties
+
+| Property | Type | Description |
+|---------|------|-------------|
+| `from` | string \| Point | **Required.** Starting point of the dimension. Can be a selector string (e.g., `"R1"`) or a Point object with `x` and `y` coordinates. |
+| `to` | string \| Point | **Required.** Ending point of the dimension. Can be a selector string (e.g., `"R2"`) or a Point object with `x` and `y` coordinates. |
+| `text` | string | Label text to display on the dimension line (e.g., `"5mm"`, `"Critical spacing"`). |
+| `arrowSize` | length | Size of the arrows at each end of the dimension line. Defaults to `1mm`. |
+| `fontSize` | length | Height of the label text. Defaults to `1mm`. |
+| `color` | string | Hex color code for the dimension line, arrows, and text (e.g., `"#ffffff"`, `"#00ff00"`). |
+| `font` | enum | Font type for the text. Currently only `"tscircuit2024"` is supported. Optional. |
+| `offset` | length | Distance to offset the dimension line from the direct path between points. |
+| `pcbRelative` | boolean | When `true`, coordinates are relative to the parent group instead of the board origin. |
+| `relative` | boolean | Similar to `pcbRelative`, applies to both PCB and schematic coordinates when used inside groups. |