From 66a8e4c95d0fa46c930f6946fa1849d7fcb7b2a8 Mon Sep 17 00:00:00 2001 From: raykholo Date: Sat, 25 Oct 2025 17:35:47 -0400 Subject: [PATCH] Rename x and y to pcbX and pcbY in via.mdx fix syntax to match reality :) --- docs/elements/via.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/elements/via.mdx b/docs/elements/via.mdx index f5f7c98..046fa2d 100644 --- a/docs/elements/via.mdx +++ b/docs/elements/via.mdx @@ -25,8 +25,8 @@ import CircuitPreview from "@site/src/components/CircuitPreview" toLayer="bottom" outerDiameter="0.8mm" holeDiameter="0.4mm" - x={10} - y={10} + pcbX={10} + pcbY={10} /> )`} /> @@ -40,5 +40,5 @@ import CircuitPreview from "@site/src/components/CircuitPreview" | toLayer | string | "bottom" | Ending layer for the via | | holeDiameter | number \| string | "0.4mm" | Diameter of the plated hole | | outerDiameter | number \| string | "0.8mm" | Outer diameter of the copper annular ring | -| x | number | 0 | PCB X position of the via | -| y | number | 0 | PCB Y position of the via | +| pcbX | number | 0 | PCB X position of the via | +| pcbY | number | 0 | PCB Y position of the via |