mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-04 03:25:30 +08:00
### What problem does this PR solve? Fix: Modify the style of the user center ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
46 lines
934 B
TypeScript
46 lines
934 B
TypeScript
import { cn } from '@/lib/utils';
|
|
import { t } from 'i18next';
|
|
import { ArrowBigLeft } from 'lucide-react';
|
|
import React from 'react';
|
|
import { useNavigate } from 'umi';
|
|
import { Button } from '../ui/button';
|
|
|
|
interface BackButtonProps
|
|
extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
to?: string;
|
|
}
|
|
|
|
const BackButton: React.FC<BackButtonProps> = ({
|
|
to,
|
|
className,
|
|
children,
|
|
...props
|
|
}) => {
|
|
const navigate = useNavigate();
|
|
|
|
const handleClick = () => {
|
|
if (to) {
|
|
navigate(to);
|
|
} else {
|
|
navigate(-1);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<Button
|
|
variant="ghost"
|
|
className={cn(
|
|
'gap-2 bg-bg-card border border-border-default hover:bg-border-button hover:text-text-primary',
|
|
className,
|
|
)}
|
|
onClick={handleClick}
|
|
{...props}
|
|
>
|
|
<ArrowBigLeft className="h-4 w-4" />
|
|
{children || t('common.back')}
|
|
</Button>
|
|
);
|
|
};
|
|
|
|
export default BackButton;
|