Skip to content

Commit c8c94fd

Browse files
committed
fix(checkbox): updates types to bind syntax
1 parent ed09dae commit c8c94fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/kit-headless/src/components/checkbox/checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export type TwoStateCheckboxProps = {
2525
} & PropsOf<'div'>;
2626

2727
type TwoStateCheckboxBehaviorProps = {
28-
checkboxSig: Signal<boolean>;
28+
'bind:checked': Signal<boolean>;
2929
} & PropsOf<'div'>;
3030
export type ChecklistTwoStateCheckboxProps = {
3131
'bind:checked'?: Signal<boolean>;

0 commit comments

Comments
 (0)