import { Avatar } from '@coinbase/onchainkit/identity';
<Avatar
address="0x1234567890abcdef1234567890abcdef12345678"
loadingComponent={(
<div className="h-8 w-8">
<svg width="100%" height="100%" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<polygon points="6,1 14,1 19,6 19,14 14,19 6,19 1,14 1,6" fill="yellow" stroke="yellow" stroke-width="1"/>
</svg>
</div>
)}
defaultComponent={(
<div className="h-8 w-8">
<svg width="100%" height="100%" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<polygon points="6,1 14,1 19,6 19,14 14,19 6,19 1,14 1,6" fill="green" stroke="green" stroke-width="1"/>
</svg>
</div>
)}
/>