import React from 'react'; const MetatranscriptomicsPipeline = ({ title = "Bioinformatics Pipeline", svgContent = null, // Pass your SVG content here as JSX svgUrl = "/images/flowchart/metatranscriptomicsrna.svg", backgroundColor = "bg-gray-50", textColor = "text-gray-700", className = "", titleClassName = "", svgClassName = "", containerClassName = "" }) => { return (

{title}

{/* SVG Flowchart Container */}
{/* SVG Container with responsive sizing */}
{svgUrl ? ( // If SVG URL/path is provided Flowchart diagram ) : svgContent ? ( // If SVG content is provided as JSX
{svgContent}
) : ( // Fallback message

Please provide SVG content or URL

)}
); }; export default MetatranscriptomicsPipeline;