import cirq
print(cirq.Circuit(
cirq.measure(cirq.LineQubit(0), key="abc"),
cirq.X(cirq.LineQubit(0)).with_classical_controls("abc"),
))
0: ─────M───X───
║ ║
abc: ═══@═══^═══
The @ means control elsewhere in diagrams. The character below the M isn't a control it's an output; it should probably be an X. And the ^ for the control on the NOT gate should be an @ since that means control.