diff --git a/src/components/Inbox/GroupDialogAvatar.module.scss b/src/components/Inbox/GroupDialogAvatar.module.scss
new file mode 100644
index 00000000..e053442d
--- /dev/null
+++ b/src/components/Inbox/GroupDialogAvatar.module.scss
@@ -0,0 +1,46 @@
+.GroupDialogAvatar {
+ position: relative;
+ height: 40px;
+ width: 40px;
+ .grouped {
+ position: absolute;
+
+ &:nth-child(1) {
+ top: 0;
+ left: 50%;
+ transform: translateX(-50%);
+ }
+
+ &:nth-child(2) {
+ bottom: 0;
+ left: 0;
+ }
+
+ &:nth-child(3) {
+ bottom: 0;
+ right: 0;
+ }
+ }
+
+ .counter {
+ width: 23px;
+ height: 23px;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+ text-align: center;
+ line-height: 21px;
+ background: #fff;
+ border: 2px solid #fff;
+ box-shadow: inset 0 0 0 2px #000;
+ border-radius: 50%;
+ box-sizing: border-box;
+ font-size: 12px;
+ font-weight: 600;
+
+ &.hundred {
+ font-size: 7px;
+ line-height: 20px;
+ }
+ }
+}
diff --git a/src/components/Inbox/GroupDialogAvatar.tsx b/src/components/Inbox/GroupDialogAvatar.tsx
new file mode 100644
index 00000000..ec81df57
--- /dev/null
+++ b/src/components/Inbox/GroupDialogAvatar.tsx
@@ -0,0 +1,38 @@
+import './DialogCard.module.scss'
+import styles from './GroupDialogAvatar.module.scss'
+import { clsx } from 'clsx'
+import type { ChatMember } from '../../graphql/types.gen'
+import DialogAvatar from './DialogAvatar'
+
+type Props = {
+ users: ChatMember[]
+}
+
+const GroupDialogAvatar = (props: Props) => {
+ const slicedUsers = () => {
+ if (props.users.length > 3) {
+ return props.users.slice(0, 2)
+ }
+ return props.users.slice(0, 3)
+ }
+ return (
+
+ {slicedUsers().map((user) => (
+
+ ))}
+ {props.users.length > 3 && (
+
= 100 })}>
+ {++props.users.length}
+
+ )}
+
+ )
+}
+
+export default GroupDialogAvatar