feat: missing tools

This commit is contained in:
Ibrahima G. Coulibaly
2025-03-09 17:45:13 +00:00
parent 2859b1ddc2
commit 04832bd104
11 changed files with 1210 additions and 133 deletions

View File

@@ -9,7 +9,7 @@ const CheckboxWithDesc = ({
disabled
}: {
title: string;
description: string;
description?: string;
checked: boolean;
onChange: (value: boolean) => void;
disabled?: boolean;
@@ -30,9 +30,11 @@ const CheckboxWithDesc = ({
}
label={title}
/>
<Typography fontSize={12} mt={1}>
{description}
</Typography>
{description && (
<Typography fontSize={12} mt={1}>
{description}
</Typography>
)}
</Box>
);
};