mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
756 B
26 lines
756 B
import {
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
HostBinding,
|
|
Input
|
|
} from '@angular/core';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { GfLogoComponent } from '../logo';
|
|
|
|
@Component({
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [GfLogoComponent, MatButtonModule, RouterModule],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-no-transactions-info-indicator',
|
|
standalone: true,
|
|
styleUrls: ['./no-transactions-info.component.scss'],
|
|
templateUrl: './no-transactions-info.component.html'
|
|
})
|
|
export class GfNoTransactionsInfoComponent {
|
|
@HostBinding('class.has-border') @Input() hasBorder = true;
|
|
|
|
public constructor() {}
|
|
}
|
|
|