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.
22 lines
635 B
22 lines
635 B
import { CommonModule } from '@angular/common';
|
|
import {
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
Input
|
|
} from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
@Component({
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [CommonModule, RouterModule],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-premium-indicator',
|
|
styleUrls: ['./premium-indicator.component.scss'],
|
|
templateUrl: './premium-indicator.component.html'
|
|
})
|
|
export class GfPremiumIndicatorComponent {
|
|
@Input() enableLink = true;
|
|
|
|
public routerLinkPricing = ['/' + $localize`:snake-case:pricing`];
|
|
}
|
|
|