bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/webcam/webcam-graphql/drop-areas/component.tsx
2024-04-25 13:01:22 -03:00

42 lines
808 B
TypeScript

// @ts-nocheck
/* eslint-disable */
import React from 'react';
import { defineMessages, injectIntl } from 'react-intl';
import Styled from './styles';
const intlMessages = defineMessages({
dropZoneLabel: {
id: 'app.video.dropZoneLabel',
description: 'message showing where the user can drop cameraDock',
},
});
const DropArea = ({
id, dataTest, style, intl,
}) => (
<>
<Styled.DropZoneArea
id={id}
data-test={dataTest}
style={
{
...style,
zIndex: style.zIndex + 1,
}
}
/>
<Styled.DropZoneBg
style={
{
...style,
zIndex: style.zIndex,
}
}
>
{intl.formatMessage(intlMessages.dropZoneLabel)}
</Styled.DropZoneBg>
</>
);
export default injectIntl(DropArea);