UNPKG

@koalarx/ui

Version:

Koala UI is a Design System developed in Angular whose objective is to facilitate and make your development faster and simpler, making this framework your greatest ally.

15 lines (14 loc) 456 B
import { KoalaAlertEnum } from './koala.alert.enum'; import { ThemePalette } from '@angular/material/core'; import { KoalaDynamicComponent } from "@koalarx/ui/dynamic-component"; export interface KoalaAlertConfigInterface { avatar?: KoalaDynamicComponent; alertEnum?: KoalaAlertEnum; message: string; actions?: { show: boolean; color: ThemePalette; action: () => void; text: string; }[]; }