Title | Added | Status | Last reviewed |
---|---|---|---|
Snackbar Content Component |
v5.1.0 |
Active |
2022-11-08 |
Custom content for Snackbar which allows use icon as action.
snackBar.openFromComponent(SnackbarContentComponent, {
data: {
message: 'Some message',
actionLabel: "Some action label",
showAction: true
}
});
Snackbar allows using action as string by default which causes that there is no possibility to use mat-icon inside snackbar's content. That custom content for Angular material Snackbar allows for that.