type Props = { title: string; onClick: () => void; disabled?: boolean; }; const SecondaryButton: React.FC = ({ title, onClick, disabled }) => ( ); export default SecondaryButton;