import classnames from "classnames"; // const types = { // error: { // backgroundColor: "bg-red-50", // titleColor: "text-red-800", // detailsColor: "text-red-700", // iconColor: "text-red-400", // icon: ( // // ), // }, // info: { // backgroundColor: "bg-blue-50", // titleColor: "text-blue-800", // detailsColor: "text-blue-700", // iconColor: "text-blue-400", // icon: ( // // ), // }, // }; export default function SelfServiceMessages({ messages = [] }) { if (!messages) return null; // make sure we don't throw on invalid data return messages.map(({ text, type }) => (

{text}

)); }