mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-01-03 00:58:50 +01:00
21 lines
434 B
JavaScript
21 lines
434 B
JavaScript
import React from 'react';
|
|
import ClearConvos from './ClearConvos';
|
|
import NavLink from './NavLink';
|
|
import DarkModeIcon from '../svg/DarkModeIcon';
|
|
import LogOutIcon from '../svg/LogOutIcon';
|
|
|
|
export default function NavLinks() {
|
|
return (
|
|
<>
|
|
<ClearConvos />
|
|
<NavLink
|
|
svg={DarkModeIcon}
|
|
text="Dark mode"
|
|
/>
|
|
<NavLink
|
|
svg={LogOutIcon}
|
|
text="Log out"
|
|
/>
|
|
</>
|
|
);
|
|
}
|