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