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/panel.md
# `<panel />`
Manufacturing panel that arranges one or more boards.
## Example
```tsx
export default () => (
<panel width="100mm" height="80mm" layoutMode="grid" boardGap="3mm">
<board width="20mm" height="10mm" />
<board width="20mm" height="10mm" />
</panel>
)
```
## Props
Commonly used: `width`, `height`, `children`, `anchorAlignment`, `noSolderMask`, `panelizationMethod`, `boardGap`, `layoutMode`
## References
- Props: [PanelProps](https://github.com/tscircuit/props#panelprops-panel)
- Source: [lib/components/panel.ts](https://github.com/tscircuit/props/blob/main/lib/components/panel.ts)
- Local docs: [docs/docs/guides/tscircuit-essentials/panelization.mdx](../docs/docs/guides/tscircuit-essentials/panelization.mdx)