import { ComponentPropsWithoutRef } from 'react' import { Button, Label, ListBox, ListBoxItem, Popover, Select, SelectValue, } from 'react-aria-components' import { themes } from '../../.storybook/preview' type ThemeSwitcherProps = Pick< ComponentPropsWithoutRef, 'defaultSelectedKey' | 'onSelectionChange' > export function ThemeSwitcher(props: ThemeSwitcherProps) { return ( ) }