
import React from 'react';

export const MindMapIcon: React.FC<{ className?: string }> = ({ className }) => (
  <svg xmlns="http://www.w3.org/2000/svg" className={className} width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round">
    <path d="M12 2a4 4 0 0 0-4 4v2H4a4 4 0 0 0-4 4v2a4 4 0 0 0 4 4h4v2a4 4 0 0 0 8 0v-2h4a4 4 0 0 0 4-4v-2a4 4 0 0 0-4-4h-4V6a4 4 0 0 0-4-4z" />
  </svg>
);
