add back and refresh button
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-02 23:52:16 +03:30
parent 505ff2f7b5
commit 54e2cb6b28
15 changed files with 165 additions and 52 deletions
+20
View File
@@ -0,0 +1,20 @@
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<Props> = ({ to, label = 'بازگشت' }) => (
<Link
to={to}
className='flex items-center gap-1 text-sm text-[#8C90A3] hover:text-black shrink-0'
>
<ArrowRight2 size={18} color='currentColor' />
{label}
</Link>
)
export default BackButton