diff options
| author | rlaks5757 <rlaks5757@gmail.com> | 2025-04-02 11:53:44 +0900 |
|---|---|---|
| committer | rlaks5757 <rlaks5757@gmail.com> | 2025-04-02 11:53:44 +0900 |
| commit | d8a70fa8802ad066fee68aca54df7fa41461a841 (patch) | |
| tree | 71d5aeb2ddcbc4c82e17ea38f082e410711c2655 /components/form-data/temp-download-btn.tsx | |
| parent | cc2c3def63f47063d4fa8b01f9f61eafdd52805c (diff) | |
sample_temp_download_icon, var_list_download_icon 변경
Diffstat (limited to 'components/form-data/temp-download-btn.tsx')
| -rw-r--r-- | components/form-data/temp-download-btn.tsx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/components/form-data/temp-download-btn.tsx b/components/form-data/temp-download-btn.tsx index 01fff569..a5f963e4 100644 --- a/components/form-data/temp-download-btn.tsx +++ b/components/form-data/temp-download-btn.tsx @@ -1,9 +1,9 @@ "use client"; import React from "react"; +import Image from "next/image"; import { useToast } from "@/hooks/use-toast"; import { toast as toastMessage } from "sonner"; -import { Download } from "lucide-react"; import { saveAs } from "file-saver"; import { Button } from "@/components/ui/button"; import { getReportTempFileData } from "@/lib/forms/services"; @@ -34,7 +34,12 @@ export const TempDownloadBtn = () => { aria-label="Template Sample Download" onClick={downloadTempFile} > - <Download /> + <Image + src="/icons/temp_sample_icon.svg" + alt="Template Sample Download Icon" + width={20} + height={20} + /> </Button> ); }; |
