/* eslint-disable @typescript-eslint/no-explicit-any */ import { BaseProps } from "../../Factory/BaseType"; import { Dialog } from "@progress/kendo-react-dialogs"; import FactoryRenderer from "../../Renderer"; import InformationIllustration from "./InformationIllustration"; type InformationAlertViewProps = BaseProps & { messageHeader?: string; messageBody?: string; iconUrl?: string; iconName?: string; confirmText?: string; onConfirm: () => void; }; const InformationAlertView = (props: InformationAlertViewProps) => { return (
{props.iconUrl ? ( ) : props.iconName ? ( ) : ( )}

{props.messageHeader}

{props.messageBody ? (

{props.messageBody}

) : null}
); }; export default InformationAlertView;