import { Link } from 'react-router'; import { ArrowLeft } from 'lucide-react'; import { cn } from 'helpers/cn'; type BackButtonProps = { label: string; href: string; className?: string }; export const BackButton = ({ label, href, className }: BackButtonProps) => { return ( {label} ); };