From 2f6e08bbcc5a3f4df041f5dd13082672f6d6a691 Mon Sep 17 00:00:00 2001 From: heygsc <1596920983@qq.com> Date: Sun, 3 Mar 2024 03:20:07 +0800 Subject: [PATCH] fix: download button icon (#6395) * 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> --- components/Downloads/DownloadButton/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Downloads/DownloadButton/index.tsx b/components/Downloads/DownloadButton/index.tsx index e5e91407017e4..342ff1a2dd1fb 100644 --- a/components/Downloads/DownloadButton/index.tsx +++ b/components/Downloads/DownloadButton/index.tsx @@ -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'; @@ -29,7 +29,7 @@ const DownloadButton: FC> = ({ > {children} - + );