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/apps/meteor/client/components/InfoPanel/InfoPanelText.tsx

14 lines
399 B

import { css } from '@rocket.chat/css-in-js';
import { Box } from '@rocket.chat/fuselage';
import type { ComponentProps, FC } from 'react';
import React from 'react';
const wordBreak = css`
word-break: break-word;
`;
const InfoPanelText: FC<ComponentProps<typeof Box>> = (props) => (
<Box mb='x8' fontScale='p2' color='hint' className={wordBreak} {...props} />
);
export default InfoPanelText;