import { ArrowRight2 } from 'iconsax-react' import { type FC } from 'react' import { Link } from 'react-router-dom' type Props = { to: string label?: string } const BackButton: FC = ({ to, label = 'بازگشت' }) => ( {label} ) export default BackButton