23 lines
536 B
TypeScript
23 lines
536 B
TypeScript
import React from 'react';
|
|
import { Text } from 'react-native';
|
|
import { Paragraph as ParagraphProps } from '@rocket.chat/message-parser';
|
|
|
|
import Inline from './Inline';
|
|
import styles from '../styles';
|
|
import { useTheme } from '../../../theme';
|
|
|
|
interface IParagraphProps {
|
|
value: ParagraphProps['value'];
|
|
}
|
|
|
|
const Paragraph = ({ value }: IParagraphProps) => {
|
|
const { colors } = useTheme();
|
|
return (
|
|
<Text style={[styles.text, { color: colors.bodyText }]}>
|
|
<Inline value={value} />
|
|
</Text>
|
|
);
|
|
};
|
|
|
|
export default Paragraph;
|