Default alert
<Alert color="blue">
  <span>
    <span class="font-medium">Info alert!</span>
    Change a few things up and try submitting again.
  </span>
</Alert>
Alerts with icon
<Alert color="blue">
  <span>
    <span class="font-medium">Info alert!</span>
    Change a few things up and try submitting again.
  </span>
</Alert>
Dismissible alerts
<Alert
  color="green"
  onDismiss={function onDismiss() {
    return alert('Alert dismissed!');
  }}
>
  <span>
    <span class="font-medium"> Info alert! </span>
    Change a few things up and try submitting again.
  </span>
</Alert>
Rounded
<Alert color="yellow" rounded={false}>
  <span>
    <span class="font-medium"> Info alert! </span>
    Change a few things up and try submitting again.
  </span>
</Alert>
Border accent
<Alert color="yellow" withBorderAccent={true}>
  <span>
    <span class="font-medium"> Info alert! </span>
    Change a few things up and try submitting again.
  </span>
</Alert>
Additional content
<Alert color="blue" icon={HiInformationCircleSolid}>
  <h3 class="text-lg font-medium text-blue-700 dark:text-blue-800">This is a info alert</h3>
    <div slot="extra">
      ...
    </div>
  </div>
</Alert>
All Options
<Alert color="green" rounded={false} withBorderAccent={true} icon={HiInformationCircleSolid}>
  <h3 class="text-lg font-medium text-green-700 dark:text-green-800">This is a info alert</h3>
    <div slot="extra">
      ...
    </div>
  </div>
</Alert>