interface FeedbackActionButtonProps { testId?: string; onClick: () => void; icon: React.ReactNode; } export function FeedbackActionButton({ testId, onClick, icon, }: FeedbackActionButtonProps) { return ( ); }