Skip to content

Commit 2f6e08b

Browse files
authored
fix: download button icon (#6395)
* fix: download button direction Signed-off-by: heygsc <[email protected]> * fix: download button icon Signed-off-by: heygsc <[email protected]> --------- Signed-off-by: heygsc <[email protected]>
1 parent 456614e commit 2f6e08b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

components/Downloads/DownloadButton/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use client';
22

3-
import { ArrowRightIcon } from '@heroicons/react/24/outline';
3+
import { CloudArrowDownIcon } from '@heroicons/react/24/outline';
44
import classNames from 'classnames';
55
import type { FC, PropsWithChildren } from 'react';
66

@@ -29,7 +29,7 @@ const DownloadButton: FC<PropsWithChildren<DownloadButtonProps>> = ({
2929
>
3030
{children}
3131

32-
<ArrowRightIcon />
32+
<CloudArrowDownIcon />
3333
</Button>
3434

3535
<Button
@@ -39,7 +39,7 @@ const DownloadButton: FC<PropsWithChildren<DownloadButtonProps>> = ({
3939
>
4040
{children}
4141

42-
<ArrowRightIcon />
42+
<CloudArrowDownIcon />
4343
</Button>
4444
</>
4545
);

0 commit comments

Comments
 (0)