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

# `<tracehint />`

Autorouter hint that nudges a trace through preferred points.

## Example

```tsx
export default () => (
  <board width="20mm" height="12mm">
    <trace from=".U1 > .pin1" to=".R1 > .pin1">
      <tracehint offset={{ x: 0, y: 3 }} />
    </trace>
  </board>
)
```

## Props

Commonly used: `x`, `y`, `via`, `toLayer`, `for`, `order`, `offset`, `offsets`

## References

- Props: [TraceHintProps](https://github.com/tscircuit/props#tracehintprops-tracehint)
- Source: [lib/components/trace-hint.ts](https://github.com/tscircuit/props/blob/main/lib/components/trace-hint.ts)