import { NgModule } from '@angular/core';
import { IgxCheckboxComponent } from './checkbox.component';

/**
 * @hidden
 * IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components
 */
@NgModule({
    imports: [IgxCheckboxComponent],
    exports: [IgxCheckboxComponent]
})
export class IgxCheckboxModule {}
