import { Popover } from '@headlessui/react' import { ActionButton, ActionButtonProps } from './ActionButton' type ActionButtonSplitProps = Omit & { splitMenuItems: { label: string shortcut?: string onClick: () => void disabled?: boolean }[] } export function ActionButtonDropdown({ splitMenuItems, className, ...props }: ActionButtonSplitProps) { return ( {splitMenuItems.map((item) => (
  • ))}
    ) }