import type { FC } from 'react' import Jazzicon, { jsNumberForAddress } from 'react-jazzicon' interface JazzIconProps { diameter: number address: string } export const JazzIcon: FC = ({ diameter, address }) => { return }