bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/presentation/presentation-close-button/component.jsx

28 lines
784 B
JavaScript
Executable File

import React from 'react';
import { defineMessages, injectIntl } from 'react-intl';
import Button from '/imports/ui/components/button/component';
import { styles } from './styles';
const intlMessages = defineMessages({
closePresentationLabel: {
id: 'app.presentation.hide',
description: 'Hide presentation label',
},
});
const ClosePresentationComponent = ({ intl, toggleSwapLayout }) => (
<Button
color="primary"
icon="minus"
size="sm"
data-test="hidePresentationButton"
onClick={toggleSwapLayout}
label={intl.formatMessage(intlMessages.closePresentationLabel)}
aria-label={intl.formatMessage(intlMessages.closePresentationLabel)}
hideLabel
className={styles.button}
/>
);
export default injectIntl(ClosePresentationComponent);