tscircuit/boosters
This code defines PCB schematics, footprints, and 3D CAD models for various integrated circuits, connectors, sensors, and electronic components used in TI booster packs and modules.
- Version
- 0.1.19
- License
- unset
- Stars
- 0
boostxl-drv8305evm/imports/SmaDiode.tsx
import type { DiodeProps } from "@tscircuit/props";
const SmaDiodeFootprint = () => (
<footprint>
<smtpad
portHints={["pin1", "anode"]}
pcbX={-2.3}
pcbY={0}
width="2.2mm"
height="2mm"
shape="rect"
/>
<smtpad
portHints={["pin2", "cathode"]}
pcbX={2.3}
pcbY={0}
width="2.2mm"
height="2mm"
shape="rect"
/>
<courtyardrect width="6.5mm" height="3.2mm" />
</footprint>
);
export const SmaDiode = (props: DiodeProps) => (
<diode footprint={<SmaDiodeFootprint />} {...props} />
);