import clsx from "clsx"; import React from "react"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import Logo from "@theme/Logo"; import styles from "./styles.module.css"; export type Message = { position?: "left" | "right"; msg: string; }; function MessageBox({ msg, isRight, }: { msg: string; isRight: boolean; }): JSX.Element { return (