import Icon from "./Icon"; type ToastState = { tone: "success" | "error" | "info"; message: string; }; type ToastProps = { toast: ToastState | null; }; export function Toast({ toast }: ToastProps) { if (!toast) return null; return (