Default Badge
<flowbite-alert>
  <span class="font-medium">Info alert!</span> Change a few things up
  and try submitting again.
</flowbite-alert>
Alerts with icon
<flowbite-alert [icon]="icon" color="red">
  <span class="font-medium">Info alert!</span> Change a few things up
  and try submitting again.
</flowbite-alert>
<ng-template #icon><svg>...</svg></ng-template>
Dismissible alerts
onDismiss = () => alert('Alert dismissed!');
<flowbite-alert color="green" [dismiss]="onDismiss">
  <span class="font-medium">Info alert!</span> Change a few things up
  and try submitting again.
</flowbite-alert>
Border accent
<flowbite-alert
  color="yellow"
  [withBorderAccent]="true"
  [rounded]="false"
>
  <span class="font-medium">Info alert!</span> Change a few things up
  and try submitting again.
</flowbite-alert>
Additional content
<flowbite-alert [icon]="icon" [additionalContent]="additionalContent">
  <h3 class="text-lg font-medium text-blue-700 dark:text-blue-800">
    This is an info alert
  </h3>
</flowbite-alert>
<ng-template #icon><svg>...</svg></ng-template>
<ng-template #additionalContent><svg>...</svg></ng-template>