New to Kendo UI for Angular? Start a free 30-day trial
KENDO_FLATCOLORPICKER
Use the KENDO_FLATCOLORPICKER
utility array to add all FlatColorPicker-related components and directives to a standalone Angular component.
typescript
import { KENDO_FLATCOLORPICKER } from '@progress/kendo-angular-inputs';
@Component({
standalone: true,
imports: [KENDO_FLATCOLORPICKER],
template: `<kendo-flatcolorpicker></kendo-flatcolorpicker>`
})
export class MyComponent {}