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/views/admin/info/TextSeparator.js

16 lines
376 B

import { Box } from '@rocket.chat/fuselage';
import React from 'react';
import DotLeader from '../../../components/DotLeader';
const TextSeparator = ({ label, value }) => (
<Box display='flex' flexDirection='row' mb='x4'>
<Box display='inline-flex' alignItems='center'>
{label}
</Box>
<DotLeader />
<span>{value}</span>
</Box>
);
export default TextSeparator;