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