+
+ {{ user.name?.slice(0, 1) || '?' }}
+
+
+
{{ user.name }}
+
{{ user.email }}
+
+
+
diff --git a/src/app/components/collaborator-item/collaborator-item.component.ts b/src/app/components/collaborator-item/collaborator-item.component.ts
new file mode 100644
index 0000000..afb1d7a
--- /dev/null
+++ b/src/app/components/collaborator-item/collaborator-item.component.ts
@@ -0,0 +1,19 @@
+import { Component, EventEmitter, Input, Output } from '@angular/core';
+import { CommonModule } from '@angular/common';
+import { User } from '../../models/auth.models';
+
+@Component({
+ selector: 'app-collaborator-item',
+ standalone: true,
+ imports: [CommonModule],
+ templateUrl: './collaborator-item.component.html',
+ styleUrl: './collaborator-item.component.css',
+})
+export class CollaboratorItemComponent {
+ @Input({ required: true }) user!: User;
+ @Output() remove = new EventEmitter