🐛 Forgot css

This commit is contained in:
Maxime Lalo 2024-07-19 13:08:22 +02:00
parent c7f89b5c6b
commit e4692864ba
3 changed files with 4 additions and 5 deletions

View File

@ -1,4 +1,4 @@
import { ChevronLeftIcon } from "@heroicons/react/24/solid";
import { ArrowLongLeftIcon } from "@heroicons/react/24/outline";
import Button, { EButtonSize, EButtonstyletype, EButtonVariant } from "@Front/Components/DesignSystem/Button";
import { NextRouter, useRouter } from "next/router";
import React from "react";
@ -21,7 +21,7 @@ class BackArrowClass extends React.Component<IPropsClass, IState> {
public override render(): JSX.Element {
return (
<Button
leftIcon={<ChevronLeftIcon />}
leftIcon={<ArrowLongLeftIcon />}
variant={EButtonVariant.PRIMARY}
styletype={EButtonstyletype.TEXT}
size={EButtonSize.SM}

View File

@ -16,6 +16,7 @@
.bottom-container {
display: flex;
flex-direction: column;
margin-top: var(--spacing-md, 16px);
gap: var(--spacing-xl, 32px);
.radio-container {

View File

@ -189,9 +189,7 @@ export default function CreateFolder(): JSX.Element {
</div>
)}
<div className={classes["buttons-container"]}>
<Button fullwidth type="submit">
Créer un dossier
</Button>
<Button type="submit">Créer le dossier</Button>
</div>
</div>
</Form>