import React from 'react'; import { Box } from '../../primitives'; import { usePropsConfig } from '../../../theme'; import type { IAvatarBadgeProps } from './props'; export const AvatarBadge = (props: IAvatarBadgeProps) => { const { boxSize, ...newProps } = usePropsConfig('AvatarBadge', props); return ( ); };