Created
November 7, 2019 04:59
-
-
Save oleersoy/7b49bac1da81372af50b18bfa541d115 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component, Output, EventEmitter } from '@angular/core'; | |
@Component({ | |
selector: 'fs-toolbar', | |
template: ` | |
<mat-toolbar color="primary"> | |
<button mat-icon-button (click)="openMenu.emit()"> | |
<mat-icon>menu</mat-icon> | |
</button> | |
<ng-content></ng-content> | |
</mat-toolbar> | |
`, | |
}) | |
export class ToolbarComponent { | |
@Output() openMenu = new EventEmitter(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment