import React from 'react'; import classnames from 'classnames'; import Jazzicon from '../../ui/jazzicon/jazzicon.component'; import BlockieIdenticon from '../../ui/identicon/blockieIdenticon/blockieIdenticon.component'; import type { PolymorphicRef } from '../box'; import { AvatarBase, AvatarBaseProps } from '../avatar-base'; import { AvatarAccountDiameter, AvatarAccountVariant, AvatarAccountSize, AvatarAccountComponent, AvatarAccountProps, } from './avatar-account.types'; export const AvatarAccount: AvatarAccountComponent = React.forwardRef( ( { size = AvatarAccountSize.Md, address, className = '', variant = AvatarAccountVariant.Jazzicon, ...props }: AvatarAccountProps, ref?: PolymorphicRef, ) => ( )} > {variant === AvatarAccountVariant.Jazzicon ? ( ) : ( )} ), );