import type { PropsWithoutRef, ReactNode } from 'react' import type { ExtractProps } from '../types' import { MenuButton as HeadlessMenuButton } from '@headlessui/react' import React, { forwardRef } from 'react' import { Button } from '..' export type MenuButtonProps = PropsWithoutRef> & { children?: ReactNode } export const MenuButton: React.ForwardRefExoticComponent< React.PropsWithoutRef & React.RefAttributes > = forwardRef(({ className, children, ...props }, ref) => { return ( ) })