Files
bishengWeb/src/components/bs-comp/chatComponent/Separator.tsx

7 lines
224 B
TypeScript
Raw Normal View History

2024-06-05 14:27:06 +08:00
export default function Separator({ className = '', text }) {
return <div className={'flex items-center justify-center py-4 text-gray-400 text-sm ' + className}>
----------- {text} -----------
</div>
};