abse/gameboy-advance
This code defines a collection of hardware components, including microcontrollers, sensors, display modules, power management ICs, and passive/passive components, each modeled as 3D symbols with specific footprints, pin configurations, and associated models for PCB and schematic design.
- Version
- 0.0.10
- License
- unset
- Stars
- 0
subcircuits/PowerBoost_MT3608/imports/CL10A226MQ8NRNC.tsx
import type { CapacitorProps } from "@tscircuit/props"
type CL10A226MQ8NRNCProps = Omit<CapacitorProps, "capacitance">
export const CL10A226MQ8NRNC = (props: CL10A226MQ8NRNCProps) => {
return (
<capacitor
capacitance="22uF"
supplierPartNumbers={{
jlcpcb: ["C59461"],
}}
manufacturerPartNumber="CL10A226MQ8NRNC"
footprint="res_p1.4mm_pw0.8mm_ph0.9mm"
cadModel={{
objUrl:
"https://modelcdn.tscircuit.com/easyeda_models/assets/C59461.obj?uuid=ac9b32e974bc448eab36b1293f859dcb",
stepUrl:
"https://modelcdn.tscircuit.com/easyeda_models/assets/C59461.step?uuid=ac9b32e974bc448eab36b1293f859dcb",
pcbRotationOffset: 0,
modelOriginPosition: { x: 0, y: 0, z: -0.4 },
}}
{...props}
/>
)
}