Last active
December 25, 2019 20:46
-
-
Save alexytiger/bf8d707f09665e9950b365846c0471b2 to your computer and use it in GitHub Desktop.
e-book
This file contains hidden or 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
<mat-card> | |
<mat-card-subtitle>SnackBar Message</mat-card-subtitle> | |
<mat-card-content> | |
<p [ngClass]="{ | |
'accent-color': data.color == 'accent', | |
'primary-color': data.color == 'primary', | |
'red-color': data.color == 'warn' | |
}"> | |
{{data.message}} | |
</p> | |
</mat-card-content> | |
</mat-card> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment