/** * HelpButton Component * * A contextual help button that appears at the top-right of pages * and links to the relevant help documentation. */ import React from 'react'; import { Link } from 'react-router-dom'; import { HelpCircle } from 'lucide-react'; import { useTranslation } from 'react-i18next'; interface HelpButtonProps { helpPath: string; className?: string; } const HelpButton: React.FC = ({ helpPath, className = '' }) => { const { t } = useTranslation(); return ( {t('common.help', 'Help')} ); }; export default HelpButton;