signal-desktop/ts/components/UserText.tsx
Jamie Kyle 0e490542a7
RTL
2023-04-20 10:03:43 -07:00

12 lines
310 B
TypeScript

// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import React from 'react';
import { Emojify } from './conversation/Emojify';
export function UserText({ text }: { text: string }): JSX.Element {
return (
<span dir="auto">
<Emojify text={text} />
</span>
);
}