Loading page…
Loading page…
Address is inline display, not an entry field. It behaves as an invisible copy button inside prose, stays selectable, uses semibold mono, and truncates without letting its suffix escape. AddressField is the separate bordered, input-like confirmation component.
Plain is default: no border or surface. Copy remains available across the whole identifier; copyable=false yields normal selectable text with no button semantics.
Send change to after confirmation.
Click identifier; decoration remains absent.
No copy behavior; native selection stays enabled.
Decoration is explicit, never field-like by default.
<p>Send change to <Address address={address} /> after confirmation.</p>
<Address address={address} copyable={false} />
<Address address={address} decoration="chip" />--ch-fg--ch-primary--ch-font-family-mono--ch-focusPrefix network glyph, trailing copy/check, status, explorer, and chip decoration compose independently. Address, txid, and UTXO wrappers provide entity-specific labels and explorer routes.
Auto truncation measures available text width. Ellipsis stays attached to prefix/suffix, both segments keep room, and every wrapper remains min-width:0/max-width:100% safe.
Address sits inline with text. AddressField reserves a bordered, labeled block for review, confirmation, and form-adjacent display; it is not the default representation of an identifier.
Recipient
// Inline prose and rows
<Address address={address} />
// Review or form-adjacent block
<AddressField address={address} network="bitcoin" label="Recipient" />QR remains an optional receive-screen extension around the same inline address control.