import React from 'react'; import { Image } from '@chakra-ui/react'; import type { ImageProps } from '@chakra-ui/react'; import { LOGO_ICON } from '@/constants/chat'; const Avatar = ({ w = '30px', ...props }: ImageProps) => { return ( ); }; export default Avatar;