import React, { FC } from 'react'; import { Avatar } from '~/components/common/Avatar'; import { MenuButton } from '~/components/menu'; import { ProfileQuickInfo } from '~/containers/profile/ProfileQuickInfo'; import { IUser } from '~/types/auth'; import { path } from '~/utils/ramda'; interface Props { user: IUser; className?: string; } const CommentAvatar: FC = ({ user, className }) => { return ( } > ); }; export { CommentAvatar };