ArnavK-09/w
A 10mm x 10mm PCB with a 1kΩ resistor and a 1000pF capacitor connected in series.
Usage: To import and use the component: ```tsx import { SomeComponent } from "@tsci/ArnavK-09.w" export default () => ( <board width="20mm" height="20mm"> <SomeComponent name="U1" /> {/* Additional circuit components and traces */} </board> ) ``` Key points: - Import the component from the specified package - Place the component on a board using its `<SomeComponent>` tag - Provide a unique `name` prop - Use with other tscircuit components and traces as needed
- Version
- 0.0.1
- License
- unset
- Stars
- 0
dist/index.js
PCB
Schematic
var index = () => /*#__PURE__*/React.createElement("board", {
width: "10mm",
height: "10mm"
}, /*#__PURE__*/React.createElement("resistor", {
resistance: "1k",
footprint: "0402",
name: "R1"
}), /*#__PURE__*/React.createElement("capacitor", {
capacitance: "1000pF",
footprint: "0402",
name: "C1"
}), /*#__PURE__*/React.createElement("trace", {
from: ".R1 > .pin1",
to: ".C1 > .pin1"
}));
export { index as default };