Skip to main content
Footprints

<silkscreenrect />

Overview

Silkscreen rectangles can be used to encapsulate a rectangular area around a chip

export default () => (
<board width="5mm" height="5mm">
<group>
<footprint>
<silkscreenrect pcbX={0} pcbY={0} width={1} height={1} />
</footprint>
</group>
</board>
)
PCB Circuit Preview

Filled Silkscreen Rectangles

Enable the filled prop to create solid silkscreen blocks—useful for alignment targets or bold markings. You can mix filled and outlined rectangles within the same footprint.

export default () => (
<board width="5mm" height="5mm">
<group>
<footprint name="U1">
<silkscreenrect pcbX={-1.2} pcbY={0} width={1} height={1} />
<silkscreenrect
pcbX={1.2}
pcbY={0}
width={1}
height={1}
filled
/>
</footprint>
</group>
</board>
)
PCB Circuit Preview