import { Component, input, output } from '@angular/core'; @Component({ selector: 'app-modal-shell', templateUrl: './modal-shell.html', styleUrl: './modal-shell.scss', }) export class ModalShell { readonly title = input.required(); readonly closed = output(); onOverlayClick() { this.closed.emit(); } onClose() { this.closed.emit(); } }