From 7a23d6231739fb38116a265c4fcd4ab8f9f890f6 Mon Sep 17 00:00:00 2001 From: Chance Strickland Date: Thu, 26 Sep 2024 15:32:59 -0700 Subject: [PATCH] fix duplicate export --- packages/react/checkbox/src/Checkbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react/checkbox/src/Checkbox.tsx b/packages/react/checkbox/src/Checkbox.tsx index 5b0bc80d5..65fc242dc 100644 --- a/packages/react/checkbox/src/Checkbox.tsx +++ b/packages/react/checkbox/src/Checkbox.tsx @@ -19,7 +19,7 @@ const CHECKBOX_NAME = 'Checkbox'; type ScopedProps

= P & { __scopeCheckbox?: Scope }; const [createCheckboxContext, createCheckboxScope] = createContextScope(CHECKBOX_NAME); -export type CheckedState = boolean | 'indeterminate'; +type CheckedState = boolean | 'indeterminate'; type CheckboxContextValue = { state: CheckedState;