UNPKG

communication-react-19

Version:

React library for building modern communication user experiences utilizing Azure Communication Services (React 19 compatible fork)

29 lines 814 B
/// <reference types="react" /> import { ReactionResources } from '../..'; /** * Props for the ReactionMenuItem * * @internal */ export interface _ReactionMenuItemProps { /** * Reaction resources to render for mobile button menus for reaction */ reactionResources?: ReactionResources; /** * reaction click event from the call adapter. */ onReactionClick?: (reaction: string) => Promise<void>; /** * Whether the menu item is disabled * @defaultvalue false */ disabled?: boolean; } /** * Maps the individual item in menuProps.items passed in the {@link DrawerMenu} into a UI component. * * @internal */ export declare const _ReactionDrawerMenuItem: (props: _ReactionMenuItemProps) => JSX.Element; //# sourceMappingURL=ReactionDrawerMenuItem.d.ts.map