UNPKG
coreui-angular-ex
Version:
latest (4.5.14)
4.5.14
CoreUI Components Library for Angular
coreui.io/angular/
coreui/coreui-angular
coreui-angular-ex
/
projects
/
coreui-angular
/
src
/
lib
/
header
/
header-text
/
header-text.component.ts
11 lines
(9 loc)
•
284 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { Component, HostBinding } from
'@angular/core'
;
@Component
({ selector:
'c-header-text, [cHeaderText]'
, template:
`<ng-content></ng-content>`
, standalone: true }) export
class
HeaderTextComponent
{
@HostBinding
(
'class.header-text'
) headerTextClass = true; }