© 2026 Hedgehog Software, LLC
import { createUseComponent } from "@tscircuit/core" import type { CommonLayoutProps } from "@tscircuit/props" const pinLabels = undefined as const interface Props extends CommonLayoutProps { name: string } export const MyComponent = (props: Props) => { return ( <chip {...props} footprint={<footprint> <platedhole portHints={["1"]} pcbX="0mm" pcbY="0mm" outerDiameter="1.6mm" holeDiameter="1.2mm" shape="circle" /> </footprint>} /> ) } export const useMyComponent = createUseComponent(MyComponent, pinLabels)
const pinLabels = undefined as const