Skip to content

Commit

Permalink
fix: download button icon (#6395)
Browse files Browse the repository at this point in the history
* fix: download button direction

Signed-off-by: heygsc <1596920983@qq.com>

* fix: download button icon

Signed-off-by: heygsc <1596920983@qq.com>

---------

Signed-off-by: heygsc <1596920983@qq.com>
  • Loading branch information
heygsc authored Mar 2, 2024
1 parent 456614e commit 2f6e08b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/Downloads/DownloadButton/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use client';

import { ArrowRightIcon } from '@heroicons/react/24/outline';
import { CloudArrowDownIcon } from '@heroicons/react/24/outline';
import classNames from 'classnames';
import type { FC, PropsWithChildren } from 'react';

Expand Down Expand Up @@ -29,7 +29,7 @@ const DownloadButton: FC<PropsWithChildren<DownloadButtonProps>> = ({
>
{children}

<ArrowRightIcon />
<CloudArrowDownIcon />
</Button>

<Button
Expand All @@ -39,7 +39,7 @@ const DownloadButton: FC<PropsWithChildren<DownloadButtonProps>> = ({
>
{children}

<ArrowRightIcon />
<CloudArrowDownIcon />
</Button>
</>
);
Expand Down

0 comments on commit 2f6e08b

Please sign in to comment.