import { Component, EventEmitter, Output, Input } from '@angular/core'; @Component({ selector: 'app-cta-button', templateUrl: './cta-button.html', styleUrls: ['./cta-button.scss'] }) export class CtaButtonComponent { @Input() label: string = 'COMEƇAR AGORA'; @Input() width: string = '250px'; @Input() height: string = '55px'; @Input() background: string = '#C91EB5'; @Input() color: string = '#FFFFFF'; @Input() fontSize: string = '18px'; @Input() fontWeight: string = '700'; @Output() clicked = new EventEmitter(); onClick() { this.clicked.emit(); } }