Parameters
| Parameter | Type | Description |
|---|---|---|
props | CopyAddressProps | The props for the component. |
Returns
Element
The CopyAddress component.
function CopyAddress(props: CopyAddressProps): Element;
| Parameter | Type | Description |
|---|---|---|
props | CopyAddressProps | The props for the component. |
Element
The CopyAddress component.
// 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?