RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/components/message/content/attachments/structure/AttachmentContent.tsx

Summary

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

type AttachmentContentProps = ComponentPropsWithoutRef<typeof Box>;

const AttachmentContent = (props: AttachmentContentProps) => <Box rcx-attachment__content width='full' mb={4} {...props} />;

export default AttachmentContent;