RTL
This commit is contained in:
parent
1f2cde6d04
commit
0e490542a7
196 changed files with 2117 additions and 1217 deletions
12
ts/components/UserText.tsx
Normal file
12
ts/components/UserText.tsx
Normal file
|
@ -0,0 +1,12 @@
|
|||
// 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue