import { NgModule } from '@angular/core';
import { IgxSwitchComponent } from './switch.component';

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