{{- $content := .content -}} {{- $alertType := .alertType -}} {{- $alertTitle := .alertTitle -}} {{- $styles := newScratch -}} {{- $styles.Set "default" (dict "icon" "light-bulb" "style" "hx:border-green-200 hx:bg-green-100 hx:text-green-900 hx:dark:border-green-200/30 hx:dark:bg-green-900/30 hx:dark:text-green-200" ) -}} {{- $styles.Set "note" (dict "icon" "information-circle" "style" "hx:border-blue-200 hx:bg-blue-100 hx:text-blue-900 hx:dark:border-blue-200/30 hx:dark:bg-blue-900/30 hx:dark:text-blue-200" ) -}} {{- $styles.Set "tip" (dict "icon" "light-bulb" "style" "hx:border-green-200 hx:bg-green-100 hx:text-green-900 hx:dark:border-green-200/30 hx:dark:bg-green-900/30 hx:dark:text-green-200" ) -}} {{- $styles.Set "important" (dict "icon" "information-circle" "style" "hx:border-purple-200 hx:bg-purple-100 hx:text-purple-900 hx:dark:border-purple-200/30 hx:dark:bg-purple-900/30 hx:dark:text-purple-200" ) -}} {{- $styles.Set "warning" (dict "icon" "exclamation" "style" "hx:border-amber-200 hx:bg-amber-100 hx:text-amber-900 hx:dark:border-amber-200/30 hx:dark:bg-amber-900/30 hx:dark:text-amber-200" ) -}} {{- $styles.Set "caution" (dict "icon" "exclamation-circle" "style" "hx:border-red-200 hx:bg-red-100 hx:text-red-900 hx:dark:border-red-200/30 hx:dark:bg-red-900/30 hx:dark:text-red-200" ) -}} {{- $style := or ($styles.Get $alertType) ($styles.Get "default") -}} {{- $title := or $alertTitle (or (i18n $alertType) (title $alertType)) -}}

{{- with $style.icon -}} {{- partial "utils/icon.html" (dict "name" . "attributes" `height=16px class="hx:inline-block hx:align-middle hx:mr-2"`) -}} {{- end -}} {{- $title -}}

{{- $content -}}