From 208e80f113f40085dfa6a9f9e87c5f1362df94d0 Mon Sep 17 00:00:00 2001 From: Daniel Clarke Date: Mon, 25 Nov 2024 18:27:35 -0500 Subject: [PATCH] Adopt copy icon for DRS bundle button References #379 --- drc-portals/app/data/c2m2/DRSBundleButton.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drc-portals/app/data/c2m2/DRSBundleButton.tsx b/drc-portals/app/data/c2m2/DRSBundleButton.tsx index e925677c..631ea2b3 100644 --- a/drc-portals/app/data/c2m2/DRSBundleButton.tsx +++ b/drc-portals/app/data/c2m2/DRSBundleButton.tsx @@ -1,7 +1,7 @@ 'use client' import React from 'react'; import Button from '@mui/material/Button'; -import DownloadIcon from '@mui/icons-material/Download'; // Ensure you have @mui/icons-material installed +import ContentCopyIcon from '@mui/icons-material/ContentCopy'; // Ensure you have @mui/icons-material installed interface DRSBundleButtonProps { data?: { [key: string]: string | bigint | number }[]; @@ -33,7 +33,7 @@ const DRSBundleButton: React.FC = ({ data }) => {