Skip to content

Commit

Permalink
📤style: export button icon (#2752)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuegovic authored May 17, 2024
1 parent 53fe2f6 commit 38ad36c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Chat/ExportButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit 38ad36c

Please sign in to comment.