2023-04-24 13:43:36 +08:00
|
|
|
import React from 'react';
|
2023-04-11 15:29:40 +08:00
|
|
|
export const ChatRevoke: React.FC = () => {
|
|
|
|
return (
|
|
|
|
<div style={{ display: 'flex', justifyContent: 'center', marginBottom: 12 }}>
|
|
|
|
<span
|
|
|
|
style={{
|
|
|
|
background: '#DADADA',
|
|
|
|
color: '#fff',
|
|
|
|
padding: '0 8px',
|
|
|
|
borderRadius: 4,
|
|
|
|
lineHeight: 1,
|
|
|
|
height: 26,
|
|
|
|
display: 'inline-flex',
|
|
|
|
justifyContent: 'center',
|
|
|
|
alignItems: 'center',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
撤回了一条消息
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|