import { Link } from 'react-router-dom'; import { ArrowLeft } from 'lucide-react'; import type { ReactNode } from 'react'; interface BackLinkProps { to: string; children: ReactNode; } export function BackLink({ to, children }: BackLinkProps): JSX.Element { return ( {children} ); }