RocketChat/Rocket.Chat

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

Summary

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

type InfoPanelFieldProps = {
    children?: ReactNode;
};

const InfoPanelField = ({ children }: InfoPanelFieldProps) => <Box mb={16}>{children}</Box>;

export default InfoPanelField;