import React from 'react'; import { Avatar as AvatarPrimitive, AvatarProps as AvatarPropsPrimitive } from '@modulz/primitives'; export type AvatarProps = AvatarPropsPrimitive & { } type ExtractRefType = TypesThatMayContainReactRef extends {ref?: React.Ref} ? T : unknown; type PrimitiveRefType = ExtractRefType export const Avatar = React.forwardRef((props, ref) => { return ( ); });