From 35dc5ae0536c4c949c2597b7201901ef452d20ea Mon Sep 17 00:00:00 2001 From: Richard R Date: Mon, 1 Jun 2026 14:21:01 -0600 Subject: [PATCH] chore(ui): remove unused export of segmented control classes from select component Eliminate unnecessary export statements for segmentedButtonClass and segmentedGroupClass in the select component to streamline the module's public API and reduce potential confusion. --- src/components/ui/select.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/ui/select.tsx b/src/components/ui/select.tsx index 5123278..64c7bc5 100644 --- a/src/components/ui/select.tsx +++ b/src/components/ui/select.tsx @@ -3,7 +3,6 @@ import { Listbox, ListboxButton, ListboxOption, ListboxOptions } from '@headlessui/react'; import type { ComponentProps } from 'react'; import { cn } from './cn'; -export { segmentedButtonClass, segmentedGroupClass } from './segmented-control'; const listboxButtonClass = 'relative w-full cursor-pointer rounded-md bg-surface-sunken border border-line py-1.5 pl-2.5 pr-9 text-left text-sm text-foreground focus:outline-none focus:ring-2 focus:ring-accent-line hover:bg-accent-wash transition-colors duration-fast ease-standard';