<Address />
The Address
component is used to render shorten user account address.
Usage
Sliced account address:
import { Address } from '@coinbase/onchainkit/identity';
<Address address="0x02feeb0AdE57b6adEEdE5A4EEea6Cf8c21BeB6B1" />
Display full address
Set isSliced
to false, to display the full address:
import { Address } from '@coinbase/onchainkit/identity';
<Address address="0x02feeb0AdE57b6adEEdE5A4EEea6Cf8c21BeB6B1" isSliced={false}/>
Override styles
You can override component styles using className
.
import { Address } from '@coinbase/onchainkit/identity';
<Address
className="bg-emerald-400 px-2 py-1 rounded"
address="0x02feeb0AdE57b6adEEdE5A4EEea6Cf8c21BeB6B1"
/>