cutie_beanbag/untitled-package-1
Imported from Circuit JSON
- Version
- 0.0.1
- License
- unset
- Stars
- 0
index.tsx
PCB
Schematic
import { type ChipProps } from "tscircuit"
export const Component = (props: ChipProps) => (
<chip
name="U1"
symbol={
<symbol>
<schematicrect schX={0} schY={0} width={2} height={1.5} isFilled={false} />
<schematiccircle center={{ x: 0, y: 0 }} radius={0.3} isFilled={true} />
<port name="in" direction="left" schX={-1} schY={0} />
<port name="out" direction="right" schX={1} schY={0} />
</symbol>
}
/>
)