techmannih/duplicate-NPTH

A 50mm x 50mm PCB layout featuring two mounting holes, a 10kΩ resistor, and a 100nF capacitor positioned at specific coordinates.

Version
0.0.1
License
unset
Stars
0

dist/index.cjs

'use strict';

var jsxRuntime = require('react/jsx-runtime');

var index = () => (jsxRuntime.jsxs("board", { width: "50mm", height: "50mm", children: [jsxRuntime.jsx("hole", { pcbX: -20, pcbY: -20, diameter: "3.2mm" }), jsxRuntime.jsx("hole", { pcbX: 20, pcbY: 20, diameter: "3.2mm" }), jsxRuntime.jsx("resistor", { name: "R1", resistance: "10k", pcbX: 0, pcbY: 0, footprint: "0402" }), jsxRuntime.jsx("capacitor", { name: "C1", capacitance: "100nF", pcbX: 5, pcbY: 0, footprint: "0402" })] }));

module.exports = index;