import React from 'react'; import classnames from 'classnames'; import { DISPLAY } from '../../../helpers/constants/design-system'; import Box from '../../ui/box'; import { BadgeWrapperPosition, BadgeWrapperAnchorElementShape, BadgeWrapperProps, } from './badge-wrapper.types'; export const BadgeWrapper = ({ children, badge, badgeContainerProps, position = BadgeWrapperPosition.topRight, positionObj, anchorElementShape = BadgeWrapperAnchorElementShape.circular, className = '', color, ...props }: BadgeWrapperProps) => ( {/* Generally the AvatarAccount or AvatarToken */} {children} {/* Generally the AvatarNetwork at SIZES.XS */} {badge} );