Skip to content

Commit

Permalink
fix: ts error for checkbox props (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsbh authored Aug 9, 2024
1 parent f221f2a commit 9253e33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/raystack/checkbox/checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ const checkbox = cva(styles.checkbox, {

export interface CheckboxProps
extends ComponentPropsWithoutRef<typeof CheckboxPrimitive.Root>,
VariantProps<typeof checkbox> {}
VariantProps<typeof checkbox>,
CheckboxPrimitive.CheckboxProps {}

export const Checkbox = forwardRef<
ElementRef<typeof CheckboxPrimitive.Root>,
Expand Down

0 comments on commit 9253e33

Please sign in to comment.