Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Jul 26, 2024
1 parent 90a4bac commit 358143b
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
Input,
ViewEncapsulation,
} from '@angular/core';
import type {TuiStringHandler} from '@taiga-ui/cdk/types';
import {tuiIsString, tuiWithStyles} from '@taiga-ui/cdk/utils/miscellaneous';
import {tuiButtonOptionsProvider} from '@taiga-ui/core/components/button';
import {tuiLinkOptionsProvider} from '@taiga-ui/core/components/link';
Expand Down Expand Up @@ -55,7 +56,8 @@ export class TuiNotification implements OnChanges, OnInit {
public appearance = inject(TUI_NOTIFICATION_OPTIONS).appearance;

@Input()
public icon = inject(TUI_NOTIFICATION_OPTIONS).icon;
public icon: TuiStringHandler<string> | string = inject(TUI_NOTIFICATION_OPTIONS)
.icon;

@Input()
@HostBinding('attr.data-size')
Expand Down

0 comments on commit 358143b

Please sign in to comment.