import clsx from 'clsx' import * as React from 'react'; import { useTranslate } from '@portal/hooks'; const alertStyle = { position: "relative", margin: "0px", zIndex: "9999", } function typeToClass(type: string): string { if(type === "error") { return "alert-danger" } else if(type === "success") { return "alert-success" } else if(type === "info") { return "alert-info" } else { return "" } } interface AlertTemplateProps { message: string options: { type: string } style: any close: any // Callback to close the alert early } export default function AlertTemplate ({ message, options, style, close }: AlertTemplateProps): React.JSX.Element { const { translate } = useTranslate() return(