import React from 'react'; interface SuggestionButtonProps { text: string; // emoji prop removed onClick: () => void; disabled?: boolean; } export const SuggestionButton: React.FC = ({ text, onClick, disabled }) => { return ( ); };