We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23fe32b commit 0a452a4Copy full SHA for 0a452a4
projects/coreui-angular/src/lib/card/card-header-actions.component.ts
@@ -1,12 +1,9 @@
1
-import {Component, HostBinding} from '@angular/core';
+import { Component } from '@angular/core';
2
3
@Component({
4
selector: 'c-card-header-actions, [c-card-header-actions]',
5
template: '<ng-content />',
6
- standalone: true
+ standalone: true,
7
+ host: { class: 'card-header-actions' }
8
})
-export class CardHeaderActionsComponent {
9
-
10
- @HostBinding('class.card-header-actions') cardHeaderActions = true;
11
12
-}
+export class CardHeaderActionsComponent {}
0 commit comments