<transistor />
Overview
A transistor is a three-terminal semiconductor device that can amplify or switch electronic signals. It is a fundamental component in many electronic circuits, including amplifiers, oscillators, and digital logic gates.
export default () => (
  <transistor
    name="Q1"
    type="npn"
    footprint="sot23"
  />
)
There are different types of transistors, so where possible you should use the most specific element to represent your use case
<transistor />- Generic transistor<mosfet />- MOSFET transistor
Properties
| Property | Description | Example | 
|---|---|---|
type | The type of transistor (npn, pnp, mosfet, igbt, jfet) | "npn" |