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