import { Component, EventEmitter, Output } from '@angular/core'; @Component({ selector: 'app-close', template: `×`, styles: [` :host { position: absolute; top: 5px; right: 5px; padding: 0 5px; color: #bdc0c8; font-weight: bold; font-size: 15px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; } span { position: relative; top: -2px; } :host:hover { color: #9b9ea6; } `] }) export class CloseComponent { @Output() close = new EventEmitter(); }