@ngx-bio-components/alert
v0.0.7
Published
```typescript import { BioAlertModule } from '@ngx-bio-components/alert'; ```
Downloads
12
Maintainers
Readme
@ngx-bio-components/alert
import { BioAlertModule } from '@ngx-bio-components/alert';
<bio-alert [alert]="alert"></bio-alert>
export type Alert = {
type?: 'error' | 'success' | 'warning' | 'info';
messages?: string[];
message?: string;
headerText?: string;
show?: boolean;
};
warning
error with header text and messages array
success
info