UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

12 lines (11 loc) 552 B
import React, { MouseEvent, ReactNode } from 'react'; export interface MenuItemProps { className?: string; disabled?: boolean; tabIndex?: number; testID?: string; onClick?: (e: MouseEvent<HTMLLIElement | HTMLDivElement>) => void; children: ReactNode; } export declare const MenuItem: ({ className, disabled, tabIndex, testID, onClick, children, }: MenuItemProps) => React.JSX.Element; export declare const BottomSheetMenuItem: ({ className, disabled, tabIndex, testID, onClick, children, }: MenuItemProps) => React.JSX.Element;