Files
scrm.antd/src/pages/ChatLogs/components/ChatRevoke.tsx

23 lines
537 B
TypeScript
Raw Normal View History

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>
);
};