import { AlertCircle } from "lucide-react"; type Props = { bannerName: string; description?: string; }; export const IntegrationAndImportExportBanner: React.FC = ({ bannerName, description }) => (

{bannerName}

{description && (

{description}

)}
);