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