This commit is contained in:
zhangkai
2024-06-05 14:27:06 +08:00
commit b825dcd4d5
730 changed files with 100244 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
export default function Separator({ className = '', text }) {
return <div className={'flex items-center justify-center py-4 text-gray-400 text-sm ' + className}>
----------- {text} -----------
</div>
};