import { ComponentChildren } from "preact"; import { CSSProperties } from "preact/compat"; interface AlertProps { type: "info" | "danger" | "warning"; title?: string; children: ComponentChildren; className?: string; style?: CSSProperties; } export default function Alert({ title, type, children, className, style }: AlertProps) { return (