Start implementing direct messaging and continued developing the chatnav
This commit is contained in:
18
src/app/chat/elements/oimg/oimg.ts
Normal file
18
src/app/chat/elements/oimg/oimg.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
import {Component, input, Input, signal} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'oimg',
|
||||
imports: [],
|
||||
templateUrl: './oimg.html',
|
||||
styleUrl: './oimg.scss',
|
||||
host: {
|
||||
"[style.height]": "height()",
|
||||
"[style.width]": "width()",
|
||||
}
|
||||
})
|
||||
export class Oimg {
|
||||
height = input("")
|
||||
width = input("")
|
||||
src = input("")
|
||||
radius = input(15)
|
||||
}
|
||||
Reference in New Issue
Block a user