22 lines
510 B
TypeScript
22 lines
510 B
TypeScript
![]() |
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>
|
||
|
);
|
||
|
};
|