diff --git a/react/features/toolbox/components/web/HangupMenuButton.tsx b/react/features/toolbox/components/web/HangupMenuButton.tsx index 1641ec6cc5..23b535636e 100644 --- a/react/features/toolbox/components/web/HangupMenuButton.tsx +++ b/react/features/toolbox/components/web/HangupMenuButton.tsx @@ -18,6 +18,11 @@ interface IProps extends WithTranslation { */ ariaControls: String; + /** + * Aria label for the Button. + */ + ariaLabel?: string; + /** * A child React Element to display within {@code InlineDialog}. */ diff --git a/react/features/toolbox/components/web/OverflowMenuButton.tsx b/react/features/toolbox/components/web/OverflowMenuButton.tsx index d9583a0ecb..3258bd1105 100644 --- a/react/features/toolbox/components/web/OverflowMenuButton.tsx +++ b/react/features/toolbox/components/web/OverflowMenuButton.tsx @@ -37,6 +37,11 @@ interface IProps { */ ariaControls: string; + /** + * Aria label for the Button. + */ + ariaLabel?: string; + /** * Information about the buttons that need to be rendered in the overflow menu. */