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
/
card
/
card-footer.component.ts
17 lines
(14 loc)
•
334 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
{
Component
,
HostBinding
}
from
'@angular/core'
;
@Component
({
selector
:
'c-card-footer, [c-card-footer]'
,
template
:
'<ng-content></ng-content>'
,
standalone
:
true
})
export
class
CardFooterComponent
{
@HostBinding
(
'class'
)
get
hostClasses
():
any
{
return
{
'card-footer'
:
true
}; } }