bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/plugins/plugin-button/component.tsx

41 lines
776 B
TypeScript

import React from 'react';
import Styled from './styles';
interface PluginHelperButtonComponentProps {
dark: boolean;
bottom: boolean;
right: boolean;
icon: string;
label: string;
onClick: (args: { browserClickEvent: React.MouseEvent<HTMLElement> }) => void;
}
const PluginHelperButtonComponent = ({
dark = false,
bottom = false,
onClick,
right,
icon,
label,
}: PluginHelperButtonComponentProps) => (
<Styled.PluginButtonWrapper
{...{
dark,
bottom,
right,
}}
>
<Styled.PluginButton
color="default"
icon={icon}
size="sm"
onClick={onClick}
hideLabel
label={label}
data-test="switchButton"
/>
</Styled.PluginButtonWrapper>
);
export default PluginHelperButtonComponent;