Skip to content

Instantly share code, notes, and snippets.

import React, { useState } from 'react';
import { MessageSquare, Brain, Users, Package, CheckCircle, XCircle, Clock, TrendingUp } from 'lucide-react';
const B2BFlowDiagram = () => {
const [activeFlow, setActiveFlow] = useState('all');
const flows = {
buyer: { color: 'bg-blue-500', name: 'Buyer Flow' },
seller: { color: 'bg-green-500', name: 'Seller Flow' },
chat: { color: 'bg-purple-500', name: 'Chat Flow' }