Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
function CopyAddress(props: CopyAddressProps): Element;
props
CopyAddressProps
Element
// Render the CopyAddress component with a custom label function CopyAddressExample() { const { evmAddress } = useEvmAddress(); if (!evmAddress) return null; return ( <CopyAddress address={evmAddress} label="My EVM address" /> ); }
Was this page helpful?