Skip to content

Commit

Permalink
fix: download button icon
Browse files Browse the repository at this point in the history
Signed-off-by: heygsc <[email protected]>
  • Loading branch information
heygsc authored Mar 2, 2024
1 parent 71dcfc2 commit 18552ab
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 { ArrowDownIcon } 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}

<ArrowDownIcon />
<CloudArrowDownIcon />
</Button>

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

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

0 comments on commit 18552ab

Please sign in to comment.