Files
hermes-web-angular/src/app/theme/theme.component.html
2025-04-01 21:29:05 +00:00

5 lines
163 B
HTML

<button mat-icon-button
aria-label="Change theme"
(click)="toggle()">
<mat-icon>{{isLightMode ? 'dark_mode' : 'light_mode'}}</mat-icon>
</button>