RocketChat/Rocket.Chat

View on GitHub
packages/ui-video-conf/src/VideoConfMessage/VideoConfMessageRow.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { Box } from '@rocket.chat/fuselage';
import type { ReactElement } from 'react';

const VideoConfMessageRow = ({ ...props }): ReactElement => <Box p={16} display='flex' justifyContent='space-between' {...props} />;

export default VideoConfMessageRow;