techmannih/usbc-charger
This code defines a detailed electronic hardware design for an 85-265VAC to USB-C PD 18W wall charger, including the schematic layout and physical component placements such as connectors, filtering inductors, capacitors, resistors, protection diodes, and an isolated power module, all integrated with 3D models and mechanical enclosures.
- Version
- 1.0.7
- License
- unset
- Stars
- 0
.claude/skills/tscircuit/elements/silkscreenrect.md
# `<silkscreenrect />`
Silkscreen rectangles can be used to encapsulate a rectangular area around a chip.
## Example
```tsx
export default () => (
<board width="5mm" height="5mm">
<footprint>
<silkscreenrect pcbX={0} pcbY={0} width={1} height={1} />
</footprint>
</board>
)
```
## Props
Commonly used: `filled`, `stroke`, `strokeWidth`, `width`, `height`, `cornerRadius`, `name`, `footprint`
## References
- Props: [SilkscreenRectProps](https://github.com/tscircuit/props#silkscreenrectprops-silkscreenrect)
- Source: [lib/components/silkscreen-rect.ts](https://github.com/tscircuit/props/blob/main/lib/components/silkscreen-rect.ts)
- Local docs: [docs/docs/footprints/silkscreenrect.mdx](../docs/docs/footprints/silkscreenrect.mdx)