good i guess

This commit is contained in:
Tizian.Breuch
2025-11-06 16:23:39 +01:00
parent 8df2420aa0
commit 7511596b11
9 changed files with 402 additions and 173 deletions

View File

@@ -2,12 +2,11 @@
import { Component, Input, Output, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
import { CommonModule, NgClass } from '@angular/common';
import { IconComponent } from '../icon/icon.component'; // IconComponent importieren
@Component({
selector: 'app-status-pill',
standalone: true,
imports: [CommonModule, NgClass, IconComponent], // IconComponent hinzufügen
imports: [CommonModule, NgClass], // IconComponent hinzufügen
templateUrl: './status-pill.component.html',
styleUrls: ['./status-pill.component.css']
})