The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/components/Message/Attachments/FieldsAttachment/ShortField.tsx

7 lines
235 B

import React, { ComponentProps, FC } from 'react';
import Field from './Field';
const ShortField: FC<ComponentProps<typeof Field>> = (props) => <Field {...props} flexGrow={1} width='50%' flexBasis={1} />;
export default ShortField;