summaryrefslogtreecommitdiff
path: root/components/form-data/temp-download-btn.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/form-data/temp-download-btn.tsx')
-rw-r--r--components/form-data/temp-download-btn.tsx9
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>
);
};