ArnavK-09/E
This code defines a 10mm x 10mm electronic circuit board with a 1kΩ resistor and a 1000pF capacitor connected via a trace.
Usage: To import and use this component: 1. Import the component: ```tsx import SomeComponent from "@tsci/ArnavK-09.E" ``` 2. Use the component in a circuit: ```tsx <board> <SomeComponent name="U1" /> </board> ``` Key usage notes: - Provide a unique `name` prop when placing the component - Can be placed within a `<board>` element - Supports standard tscircuit layout props The example shows basic placement and tracing connections between components.
- Version
- 0.0.1
- License
- unset
- Stars
- 0
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>
)