import React from 'react'; import Link from 'next/link'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faArrowLeft } from '@fortawesome/free-solid-svg-icons'; interface BackButtonProps { href: string; label?: string; } const BackButton: React.FC = ({ href, label = 'Back' }) => { return ( {label} ); }; export default BackButton;