We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 456614e commit 2f6e08bCopy full SHA for 2f6e08b
components/Downloads/DownloadButton/index.tsx
@@ -1,6 +1,6 @@
1
'use client';
2
3
-import { ArrowRightIcon } from '@heroicons/react/24/outline';
+import { CloudArrowDownIcon } from '@heroicons/react/24/outline';
4
import classNames from 'classnames';
5
import type { FC, PropsWithChildren } from 'react';
6
@@ -29,7 +29,7 @@ const DownloadButton: FC<PropsWithChildren<DownloadButtonProps>> = ({
29
>
30
{children}
31
32
- <ArrowRightIcon />
+ <CloudArrowDownIcon />
33
</Button>
34
35
<Button
@@ -39,7 +39,7 @@ const DownloadButton: FC<PropsWithChildren<DownloadButtonProps>> = ({
39
40
41
42
43
44
</>
45
);
0 commit comments