Skip to content

Commit 9253e33

Browse files
authored
fix: ts error for checkbox props (#136)
1 parent f221f2a commit 9253e33

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/raystack/checkbox/checkbox.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ const checkbox = cva(styles.checkbox, {
2020

2121
export interface CheckboxProps
2222
extends ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>,
23-
VariantProps<typeof checkbox> {}
23+
VariantProps<typeof checkbox>,
24+
CheckboxPrimitive.CheckboxProps {}
2425

2526
export const Checkbox = forwardRef<
2627
ElementRef<typeof CheckboxPrimitive.Root>,

0 commit comments

Comments
 (0)