RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/components/InfoPanel/InfoPanelSection.tsx

Summary

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

type InfoPanelSectionProps = ComponentPropsWithoutRef<typeof Box>;

const InfoPanelSection = (props: InfoPanelSectionProps) => <Box mb={24} {...props} />;

export default InfoPanelSection;