UI: backButton fixes

This commit is contained in:
Johannes Kirschbauer
2024-12-11 11:31:45 +01:00
parent 7553ee2dc8
commit cfba2e2288

View File

@@ -6,10 +6,11 @@ export const BackButton = () => {
const navigate = useNavigate();
return (
<Button
variant="light"
class="w-fit"
variant="ghost"
size="s"
class="mr-2"
onClick={() => navigate(-1)}
startIcon={<Icon icon="CaretRight" />}
startIcon={<Icon icon="CaretLeft" />}
></Button>
);
};