/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import { ChangeDetectionStrategy, Component, input } from '@angular/core'; import { HlmLabelImports } from '@spartan-ng/styles/label'; @Component({ selector: 'app-label', changeDetection: ChangeDetectionStrategy.OnPush, imports: [HlmLabelImports], template: ` `, }) export class LabelComponent { readonly for = input(undefined); } export const LabelImports = [LabelComponent] as const;