import { Component, Input } from '@angular/core'; @Component({ selector: 'app-error-toast', standalone: true, imports: [], templateUrl: './error-toast.component.html', styleUrl: './error-toast.component.scss', }) export class ErrorToastComponent { @Input() errorText: string = ''; }