mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-18 06:15:12 +00:00
28 lines
842 B
TypeScript
28 lines
842 B
TypeScript
import { NgFor, NgIf } from '@angular/common';
|
|
import { ChangeDetectionStrategy, Component, Input, ViewEncapsulation } from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { MatIconModule } from '@angular/material/icon';
|
|
import { MatDrawer } from '@angular/material/sidenav';
|
|
import { Chat } from 'app/modules/admin/apps/chat/chat.types';
|
|
|
|
@Component({
|
|
selector : 'chat-contact-info',
|
|
templateUrl : './contact-info.component.html',
|
|
encapsulation : ViewEncapsulation.None,
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
standalone : true,
|
|
imports : [MatButtonModule, MatIconModule, NgIf, NgFor],
|
|
})
|
|
export class ContactInfoComponent
|
|
{
|
|
@Input() chat: Chat;
|
|
@Input() drawer: MatDrawer;
|
|
|
|
/**
|
|
* Constructor
|
|
*/
|
|
constructor()
|
|
{
|
|
}
|
|
}
|