import React, { useState } from 'react'; import { ArrowRight } from 'lucide-react'; interface PrimaryCTAButtonProps { text: string; onClick: () => void; ariaLabel?: string; className?: string; disabled?: boolean; } export function PrimaryCTAButton({ text, onClick, ariaLabel, className = '', disabled = false }: PrimaryCTAButtonProps) { const [isHovered, setIsHovered] = useState(false); return ( ); } // Named exports for backward compatibility export const PrimaryCTAButtonProps = PrimaryCTAButton; export default PrimaryCTAButton;