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/pcbnotetext.md

# `<pcbnotetext />`

Add text annotations and labels to your PCB layout.

## Example

```tsx
export default () => (
  <board width="20mm" height="20mm">
    <pcbnotetext
      pcbX={0}
      pcbY={0}
      text="Hello PCB"
      fontSize={1.5}
      anchorAlignment="center"
    />
  </board>
)
```

## Props

Commonly used: `text`, `anchorAlignment`, `font`, `fontSize`, `color`, `name`, `footprint`, `connections`

## References

- Props: [PcbNoteTextProps](https://github.com/tscircuit/props#pcbnotetextprops-pcbnotetext)
- Source: [lib/components/pcb-note-text.ts](https://github.com/tscircuit/props/blob/main/lib/components/pcb-note-text.ts)
- Local docs: [docs/docs/elements/pcbnotetext.mdx](../docs/docs/elements/pcbnotetext.mdx)