import type { ExtendedChain } from '@lifi/sdk' import type { SxProps, Theme } from '@mui/material' import { Badge, Skeleton } from '@mui/material' import { AvatarDefault, AvatarSkeletonMaskedContainer } from './Avatar.style.js' import { ChainBadgeContent } from './ChainBadgeContent.js' import { SmallAvatarSkeleton } from './SmallAvatar.js' export const AvatarBadgedDefault: React.FC<{ sx?: SxProps chain?: ExtendedChain }> = ({ sx, chain }) => { return ( } sx={sx} > ) } export const AvatarBadgedSkeleton: React.FC<{ sx?: SxProps avatarSize?: number badgeSize?: number }> = ({ sx, avatarSize = 40, badgeSize = 16 }) => { return ( } sx={sx} > ) } const AvatarSkeleton: React.FC<{ avatarSize: number badgeSize: number }> = ({ avatarSize, badgeSize }) => { return ( ) }