import { Component, EventEmitter, Output, } from '@angular/core'; import { fadeInOutAnimation, } from './../../helpers/animations/index'; @Component({ animations: [ fadeInOutAnimation(), ], host: { '[@fadeInOutAnimation]': '', 'style': 'display: block', }, selector: 'cookie-warning-component', styleUrls: [ './cookie-warning.component.scss', ], templateUrl: 'cookie-warning.component.template.pug', }) export default class CookieWarningComponent { @Output() public onAccept = new EventEmitter(); }