I have a wrapper component for buttons which looks something like
<button [id]="fn()" (click)="this.click.emit()"></button>
I am using the selector to
<btn-generic>
and applying a separate click event to it ,but the click gets applied on the wrapper component as well,Is there a way to pass the click event on the button alone.