ArnavK-09/untitled-package-13

A 10mm x 10mm PCB featuring a 1kΩ resistor and a 1000pF capacitor connected in series at their positive terminals.

Usage: For the example package "@tsci/AUTHOR.PACKAGE_NAME": Import: ```tsx import { SomeComponent } from "@tsci/AUTHOR.PACKAGE_NAME" ``` Usage: ```tsx <board> <SomeComponent name="U1" // Required name prop // Optional CommonLayoutProps like schX, pcbX, etc. /> </board> ``` Key details: - Component represents a chip with 6 pins - Requires a `name` prop - Can use layout positioning props - Pins include VCC, DISCH, THRES, CTRL, GND, TRIG - Can connect to other components using `sel` selector

Version
0.0.1
License
unset
Stars
0

index.tsx

PCBPCB preview for index.tsx
SchematicSchematic preview for index.tsx
export default () => (
  <board width="10mm" height="10mm">
    <resistor
      resistance="1k"
      footprint="0402"
      name="R1"
    />
    <capacitor
      capacitance="1000pF"
      footprint="0402"
      name="C1"
    />
    <trace from=".R1 > .pin1" to=".C1 > .pin1" />
  </board>
)