import React from "react"; type Props = { title: string; onClick: () => void; fullWidth?: boolean; }; const PrimaryButton: React.FC = ({ title, onClick, fullWidth = false, }) => ( ); export default PrimaryButton;