Files
psp_panel/src/app/shared/components/key-value.component/key-value.component.ts
T

17 lines
373 B
TypeScript
Raw Normal View History

2025-12-04 21:07:18 +03:30
import { CommonModule } from '@angular/common';
import { Component, Input } from '@angular/core';
@Component({
selector: 'app-key-value',
standalone: true,
imports: [CommonModule],
templateUrl: './key-value.component.html',
host: {
class: 'w-full block',
},
})
export class KeyValueComponent {
@Input() label!: string;
@Input() value?: string = '-';
}