libs/design/input/examples/src/input-disabled/input-disabled.component.ts
import {
ChangeDetectionStrategy,
Component,
} from '@angular/core';
import {
DaffFormFieldModule,
DaffInputModule,
} from '@daffodil/design';
@Component({
// eslint-disable-next-line @angular-eslint/component-selector
selector: 'input-disabled',
templateUrl: './input-disabled.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
imports: [DaffFormFieldModule, DaffInputModule],
})
export class InputDisabledComponent {
}