Skip to content

Commit

Permalink
fix(kalert): use proper danger icon (#2550)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven authored Dec 23, 2024
1 parent 84caab1 commit 4b92584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/KAlert/KAlert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import { computed } from 'vue'
import type { PropType } from 'vue'
import type { AlertAppearance } from '@/types'
import { AlertAppearances } from '@/types'
import { InfoIcon, CheckCircleIcon, WarningIcon, ClearIcon, CloseIcon } from '@kong/icons'
import { InfoIcon, CheckCircleIcon, WarningIcon, DangerIcon, CloseIcon } from '@kong/icons'
import { KUI_ICON_SIZE_40 } from '@kong/design-tokens'
type AlertIcon = typeof InfoIcon // all icons are the same type so we can use any of them
Expand Down Expand Up @@ -92,7 +92,7 @@ const getAlertIcon = computed((): AlertIcon => {
case AlertAppearances.warning:
return WarningIcon
case AlertAppearances.danger:
return ClearIcon
return DangerIcon
default:
return InfoIcon // info as default in case of invalid appearance
}
Expand Down

0 comments on commit 4b92584

Please sign in to comment.