File size: 349 Bytes
ac4a6d6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | import React from 'react';
import { ArrowLeft } from 'lucide-react';
import { Link } from 'react-router-dom';
export function BackButton() {
return (
<Link
to="/#/"
className="inline-flex items-center text-blue-500 hover:text-blue-600 mb-6"
>
<ArrowLeft className="w-4 h-4 mr-2" />
Back to Home
</Link>
);
}
|