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.
25 lines
609 B
25 lines
609 B
import { CommonModule } from '@angular/common';
|
|
import {
|
|
CUSTOM_ELEMENTS_SCHEMA,
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
HostBinding,
|
|
Input
|
|
} from '@angular/core';
|
|
|
|
@Component({
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
imports: [CommonModule],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
|
selector: 'gf-logo',
|
|
standalone: true,
|
|
styleUrls: ['./logo.component.scss'],
|
|
templateUrl: './logo.component.html'
|
|
})
|
|
export class GfLogoComponent {
|
|
@HostBinding('class') @Input() size: 'large' | 'medium' = 'medium';
|
|
@Input() label: string;
|
|
@Input() showLabel = true;
|
|
|
|
public constructor() {}
|
|
}
|
|
|