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.tsx11
1 files changed, 6 insertions, 5 deletions
diff --git a/components/form-data/temp-download-btn.tsx b/components/form-data/temp-download-btn.tsx
index a5f963e4..793022d6 100644
--- a/components/form-data/temp-download-btn.tsx
+++ b/components/form-data/temp-download-btn.tsx
@@ -29,17 +29,18 @@ export const TempDownloadBtn = () => {
};
return (
<Button
- variant="ghost"
- className="relative p-2"
+ variant="outline"
+ className="relative px-[8px] py-[6px] flex-1"
aria-label="Template Sample Download"
onClick={downloadTempFile}
>
<Image
src="/icons/temp_sample_icon.svg"
alt="Template Sample Download Icon"
- width={20}
- height={20}
+ width={16}
+ height={16}
/>
+ <div className='text-[12px]'>Sample Template Download</div>
</Button>
);
-};
+}; \ No newline at end of file