import { ComponentChildren } from "preact"; import "./InfoBar.css"; export type InfoBarParams = { type: "prominent" | "subtle", className: string; children: ComponentChildren; }; export default function InfoBar(props: InfoBarParams) { return