import React from "react"; const Alert = ({ children, type }) => { const textcolor = type ? theme(type) : theme(); function theme(color) { switch (color) { case "success": return "border-[#c3e6cb] bg-[#d4edda] text-[#155724]"; case "info": return "border-[#adcdeb] bg-[#c1daf0] text-[#153756]"; case "danger": return "border-[#f0a8a8] bg-[#f4bebe] text-[#c42121]"; default: return "border-[#d6d6d6] bg-[#d9d9d9] text-[#575757]"; } } return ( <> {children && (
{children}
)} ); }; export default Alert;