RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/views/omnichannel/components/Field.tsx

Summary

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

type FieldProps = { children?: ReactNode };

const Field = ({ children }: FieldProps) => <Box mb={16}>{children}</Box>;

export default Field;