"Then they were informed, then they were messaged, then they were alerted."
Br Jhons, 1752
| isOpen | boolean | |
| level | string | 
<Alert >
	Simple alert with a button
	<Button slot="topButtonSlot">button</Button>
</Alert>| isOpen | boolean | |
| level | string | 
<Alert />	__propDef: {
    props: {
        class?: string | undefined;
        element?: HTMLDivElement | null | undefined;
        /** type of levels */ level?: ("alert" | "error" | "success" | "info" | "warning" | "discrete") | undefined;
        action?: (() => void) | undefined;
        data?: {} | undefined;
        text?: string | undefined;
        message?: string | undefined;
        isDragable?: boolean | undefined;
        isOpen?: boolean | undefined;
        actions?: any;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
        topButtonSlot: {};
        messageSlot: {};
        buttonZoneSlot: {};
    };
};