mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 17:30:16 +01:00
19 lines
596 B
TypeScript
19 lines
596 B
TypeScript
|
|
import * as Tabs from '@radix-ui/react-tabs';
|
||
|
|
import Avatar from './Avatar';
|
||
|
|
import React from 'react';
|
||
|
|
|
||
|
|
function Account() {
|
||
|
|
return (
|
||
|
|
<Tabs.Content value="account" role="tabpanel" className="w-full md:min-h-[300px]">
|
||
|
|
<div className="flex flex-col gap-3 text-sm text-gray-600 dark:text-gray-300">
|
||
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700">
|
||
|
|
<Avatar />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div className="border-b pb-3 last-of-type:border-b-0 dark:border-gray-700"></div>
|
||
|
|
</Tabs.Content>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default React.memo(Account);
|