techmannih/circuit

This code renders a 50mm by 50mm circuit board with a Texas Instruments TXS0104EQPWRQ1 level translator component placed at specified coordinates.

Version
0.0.1
License
unset
Stars
0

index.tsx

PCBPCB preview for index.tsx
SchematicSchematic preview for index.tsx
import { TXS0104EQPWRQ1 } from "./TXS0104EQPWRQ1"

export default () => (
    <board width="50mm" height="50mm">
        <TXS0104EQPWRQ1 name="U_LC1" pcbX={-10} pcbY={5} />
    </board>
)