/* eslint-disable react/display-name */
import {
MaterialIcon,
type MaterialIconSetIconProps,
} from "@scandic-hotels/design-system/Icons"
import { AlertTypeEnum } from "@/types/enums/alert"
export function getIconByAlertType(alertType: AlertTypeEnum) {
switch (alertType) {
case AlertTypeEnum.Alarm:
return function (props: MaterialIconSetIconProps) {
return (
)
}
case AlertTypeEnum.Warning:
return function (props: MaterialIconSetIconProps) {
return (
)
}
case AlertTypeEnum.Info:
default:
return function (props: MaterialIconSetIconProps) {
return (
)
}
}
}