UNPKG

communication-react-19

Version:

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

22 lines 601 B
import React from 'react'; /** * Props for displaying a send button besides the text input area. * * @private */ export type InputBoxButtonProps = { onRenderIcon: (isHover: boolean) => JSX.Element; onClick: (e: React.MouseEvent<HTMLDivElement, MouseEvent>) => void; className?: string; id?: string; ariaLabel?: string; tooltipContent?: string; 'data-testId'?: string; disabled?: boolean; ariaExpanded?: boolean; }; /** * @private */ export declare const InputBoxButton: (props: InputBoxButtonProps) => JSX.Element; //# sourceMappingURL=InputBoxButton.d.ts.map