import { NgModule } from '@angular/core'; import { IgxDividerDirective } from './divider.directive'; /** * @hidden * IMPORTANT: The following is NgModule exported for backwards-compatibility before standalone components */ @NgModule({ imports: [IgxDividerDirective], exports: [IgxDividerDirective] }) export class IgxDividerModule { }