📤style: export button icon (#2752)

This commit is contained in:
Fuegovic 2024-05-17 14:16:02 -04:00 committed by GitHub
parent 53fe2f6453
commit 38ad36c1c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ import React from 'react';
import { useState } from 'react';
import { useLocation } from 'react-router-dom';
import type { TConversation } from 'librechat-data-provider';
import { Download } from 'lucide-react';
import { Upload } from 'lucide-react';
import { TooltipProvider, Tooltip, TooltipTrigger, TooltipContent } from '~/components/ui';
import { useLocalize } from '~/hooks';
import { ExportModal } from '../Nav';
@ -50,7 +50,7 @@ function ExportButton() {
onClick={clickHandler}
>
<div className="flex w-full items-center justify-center gap-2">
<Download size={16} />
<Upload size={16} />
</div>
</button>
</TooltipTrigger>