UNPKG

@ebay/ui-core-react

Version:

Skin components build off React

13 lines 492 B
import { ComponentProps, FC } from "react"; export type EbayMenuItemType = "button"; export type EbayFakeMenuItemProps = Omit<ComponentProps<"a">, "onKeyDown"> & Omit<ComponentProps<"button">, "onKeyDown"> & { current?: boolean; disabled?: boolean; autoFocus?: boolean; type?: EbayMenuItemType; badgeNumber?: number; badgeAriaLabel?: string; }; declare const EbayMenuItem: FC<EbayFakeMenuItemProps>; export default EbayMenuItem; //# sourceMappingURL=menu-item.d.ts.map