Guest User

Untitled

a guest
Dec 15th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <div class="mat-calendar-header">
  2. <div class="mat-calendar-controls">
  3. <button mat-button type="button" class="mat-calendar-period-button"
  4. (click)="currentPeriodClicked()" cdkAriaLive="polite">
  5. {{periodButtonText}}
  6. <div class="mat-calendar-arrow"
  7. [class.mat-calendar-invert]="calendar.currentView != 'month'"></div>
  8. </button>
  9.  
  10. <div class="mat-calendar-spacer"></div>
  11.  
  12. <ng-content></ng-content>
  13.  
  14. <button mat-icon-button type="button" class="mat-calendar-previous-button"
  15. [disabled]="!previousEnabled()" (click)="previousClicked()">
  16. </button>
  17.  
  18. <button mat-icon-button type="button" class="mat-calendar-next-button"
  19. [disabled]="!nextEnabled()" (click)="nextClicked()">
  20. </button>
  21. </div>
  22. </div>
Add Comment
Please, Sign In to add comment