diff --git a/npm/ng-packs/packages/theme-shared/src/lib/components/checkbox/checkbox.component.ts b/npm/ng-packs/packages/theme-shared/src/lib/components/checkbox/checkbox.component.ts
index 1e7e1ab972..3ead2f929d 100644
--- a/npm/ng-packs/packages/theme-shared/src/lib/components/checkbox/checkbox.component.ts
+++ b/npm/ng-packs/packages/theme-shared/src/lib/components/checkbox/checkbox.component.ts
@@ -16,7 +16,7 @@ import { NG_VALUE_ACCESSOR } from '@angular/forms';
(blur)="onBlur.next()"
(focus)="onFocus.next()"
>
-
+
`,
providers: [
@@ -30,13 +30,14 @@ import { NG_VALUE_ACCESSOR } from '@angular/forms';
export class FormCheckboxComponent extends AbstractNgModelComponent {
@Input() label?: string;
+ @Input() labelClass = 'form-check-label';
@Input() checkboxId!: string;
@Input() checkboxStyle = '';
@Input() checkboxClass = 'form-check-input';
@Input() checkboxReadonly = false;
@Output() onBlur = new EventEmitter();
@Output() onFocus = new EventEmitter();
-
+
constructor(injector: Injector) {
super(injector);
}