Signal-Desktop/ts/components/conversation/About.tsx

27 lines
473 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { Emojify } from './Emojify';
export type PropsType = {
className?: string;
text?: string;
};
export const About = ({
className = 'module-about__text',
text,
}: PropsType): JSX.Element | null => {
if (!text) {
return null;
}
return (
<span className={className} dir="auto">
<Emojify text={text || ''} />
</span>
);
};