Skip to content

Commit

Permalink
fix duplicate export
Browse files Browse the repository at this point in the history
  • Loading branch information
chaance committed Sep 26, 2024
1 parent 25e29c5 commit 7a23d62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react/checkbox/src/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const CHECKBOX_NAME = 'Checkbox';
type ScopedProps<P> = P & { __scopeCheckbox?: Scope };
const [createCheckboxContext, createCheckboxScope] = createContextScope(CHECKBOX_NAME);

export type CheckedState = boolean | 'indeterminate';
type CheckedState = boolean | 'indeterminate';

type CheckboxContextValue = {
state: CheckedState;
Expand Down

0 comments on commit 7a23d62

Please sign in to comment.