diff --git a/src/core/components/Checkbox/index.tsx b/src/core/components/Checkbox/index.tsx index 82f021a..161db27 100644 --- a/src/core/components/Checkbox/index.tsx +++ b/src/core/components/Checkbox/index.tsx @@ -11,6 +11,8 @@ const Checkbox = forwardRef(( label, svgSize = SVG_SIZE["SIZE_24"], isCircle = false, + className, + ...props }: CheckboxProps, ref: React.ComponentPropsWithRef<"input">["ref"], ) => { @@ -22,8 +24,8 @@ const Checkbox = forwardRef(( const svg = !isCircle ? RectangleCheckbox : CircleCheckbox; return ( -