New to Kendo UI for Angular? Start a free 30-day trial
LabelModule
The exported package module.
The package exports:
LabelDirective
—The Label directive class.LabelComponent
—The Label component classFloatingLabel
—The FloatingLabel component class.
ts
import { LabelModule } from '@progress/kendo-angular-label';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, LabelModule],
bootstrap: [AppComponent]
})
export class AppModule {}