diff --git a/react/features/base/ui/components/web/ClickableIcon.tsx b/react/features/base/ui/components/web/ClickableIcon.tsx index b50ed32a8..91eea3def 100644 --- a/react/features/base/ui/components/web/ClickableIcon.tsx +++ b/react/features/base/ui/components/web/ClickableIcon.tsx @@ -6,6 +6,7 @@ import Icon from '../../../icons/components/Icon'; interface IProps { accessibilityLabel: string; + className?: string; icon: Function; id?: string; onClick: () => void; @@ -40,14 +41,14 @@ const useStyles = makeStyles()(theme => { }; }); -const ClickableIcon = ({ accessibilityLabel, icon, id, onClick }: IProps) => { +const ClickableIcon = ({ accessibilityLabel, className, icon, id, onClick }: IProps) => { const { classes: styles, cx } = useStyles(); const isMobile = isMobileBrowser(); return (