mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
feat: missing tools
This commit is contained in:
@@ -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>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user