diff --git a/client/src/components/ui/Checkbox/index.tsx b/client/src/components/ui/Checkbox/index.tsx index 2f85990..0462b1f 100644 --- a/client/src/components/ui/Checkbox/index.tsx +++ b/client/src/components/ui/Checkbox/index.tsx @@ -1,4 +1,3 @@ -import { cn } from '@utils/common'; import { FC, useId } from 'react'; type CheckboxProps = { @@ -10,7 +9,7 @@ type CheckboxProps = { const Checkbox: FC = ({ label, checked, onChange }) => { const id = useId(); return ( -
+
= ({ label, checked, onChange }) => { id={id} /> {label && ( -