import React from 'react'; import { Box } from '@chakra-ui/react'; import type { ImageProps } from '@chakra-ui/react'; import { LOGO_ICON } from '@fastgpt/global/common/system/constants'; import MyIcon from '../Icon'; import { iconPaths } from '../Icon/constants'; import MyImage from '../Image/MyImage'; const Avatar = ({ w = '30px', src, ...props }: ImageProps) => { // @ts-ignore const isIcon = !!iconPaths[src as any]; return isIcon ? ( ) : ( ); }; export default React.memo(Avatar);