Skip to content

Commit

Permalink
Adopt copy icon for DRS bundle button
Browse files Browse the repository at this point in the history
References #379
  • Loading branch information
u8sand authored and heesukim628 committed Dec 3, 2024
1 parent 29bbca6 commit 73cc765
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drc-portals/app/data/c2m2/DRSBundleButton.tsx
Original file line number Diff line number Diff line change
@@ -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 }[];
Expand Down Expand Up @@ -33,7 +33,7 @@ const DRSBundleButton: React.FC<DRSBundleButtonProps> = ({ data }) => {
<Button
variant="contained"
color="primary"
startIcon={<DownloadIcon />}
startIcon={<ContentCopyIcon />}
onClick={handleDRSBundle}
disabled={!access_urls?.length}
>
Expand Down

0 comments on commit 73cc765

Please sign in to comment.