import { AvatarBaseProps, AvatarIconProps, Avatar as DSAvatar, AvatarImageProps as DSAvatarImageProps, } from "@opensea/ui-kit" import React, { ComponentProps, ComponentPropsWithoutRef, ElementRef, forwardRef, } from "react" import { Image } from "../Image" type BaseAvatarImageProps = DSAvatarImageProps & ComponentPropsWithoutRef export type AvatarProps = | Omit | AvatarIconProps | AvatarBaseProps type AvatarImageProps = ComponentProps> export const AvatarImage = forwardRef( function AvatarImage({ size, ...rest }, ref) { return }, ) export const Avatar = forwardRef, AvatarProps>( function NextAvatar(props, ref) { return }, )