@@ -104,7 +104,7 @@ import * as MDX from "../../../../components/common/MDXContent/anvil-cmg";
104104import { RequestAccess } from "../../../../components/Detail/components/AnVILCMG/components/RequestAccess/requestAccess" ;
105105import { Description } from "../../../../components/Detail/components/MDX/components/Description/description" ;
106106import { ExportEntity } from "../../../../components/Export/components/AnVILExplorer/components/ExportEntity/exportEntity" ;
107- import { Icon } from "../../../../components/Export/components/AnVILExplorer/components/ExportMethod/components/Icon/icon " ;
107+ import { ExportIcon } from "../../../../components/Export/components/AnVILExplorer/components/ExportMethod/components/ExportIcon/exportIcon " ;
108108import { METADATA_KEY } from "../../../../components/Index/common/entities" ;
109109import { getPluralizedMetadataLabel } from "../../../../components/Index/common/indexTransformer" ;
110110import { SUMMARY_DISPLAY_TEXT } from "./summaryMapper/constants" ;
@@ -473,7 +473,7 @@ export const buildDatasetExportMethodManifestDownload = (
473473 return {
474474 description :
475475 "Download a TSV manifest containing metadata for all data files in the dataset." ,
476- icon : < Icon alt = "Manifest" src = "/export/manifest.webp" width = { 24 } /> ,
476+ icon : < ExportIcon alt = "Manifest" src = "/export/manifest.webp" width = { 24 } /> ,
477477 route : `${ datasetPath } ${ ROUTES . MANIFEST_DOWNLOAD } ` ,
478478 title : "Download TSV Manifest" ,
479479 } ;
@@ -507,7 +507,7 @@ export const buildDatasetExportMethodTerra = (
507507 return {
508508 description :
509509 "Terra is a biomedical research platform to analyze data using workflows, Jupyter Notebooks, RStudio, and Galaxy." ,
510- icon : < Icon alt = "Terra" src = "/export/terra.webp" width = { 24 } /> ,
510+ icon : < ExportIcon alt = "Terra" src = "/export/terra.webp" width = { 24 } /> ,
511511 route : `${ datasetPath } ${ ROUTES . TERRA } ` ,
512512 title : "Export to Terra" ,
513513 } ;
@@ -537,7 +537,7 @@ export const buildDatasetExportMethodCurlCommand = (
537537 return {
538538 description :
539539 "Generate a curl command to download all files in this open-access dataset." ,
540- icon : < Icon alt = "curl" src = "/export/curl.webp" width = { 24 } /> ,
540+ icon : < ExportIcon alt = "curl" src = "/export/curl.webp" width = { 24 } /> ,
541541 route : `${ datasetPath } ${ ROUTES . CURL_DOWNLOAD } ` ,
542542 title : "Download Open-Access Data Files (No Data Transfer Fees)" ,
543543 } ;
@@ -891,7 +891,7 @@ export const buildExportMethodManifestDownload = (
891891 ...getExportMethodAccessibility ( viewContext ) ,
892892 description :
893893 "Download a TSV manifest containing metadata for all data files in the current selection, including managed-access files." ,
894- icon : < Icon alt = "Manifest" src = "/export/manifest.webp" width = { 24 } /> ,
894+ icon : < ExportIcon alt = "Manifest" src = "/export/manifest.webp" width = { 24 } /> ,
895895 route : ROUTES . MANIFEST_DOWNLOAD ,
896896 title : "Download TSV Manifest for All Selected Data Files" ,
897897 } ;
@@ -911,7 +911,7 @@ export const buildExportMethodTerra = (
911911 ...getExportMethodAccessibility ( viewContext ) ,
912912 description :
913913 "Terra is a biomedical research platform to analyze data using workflows, Jupyter Notebooks, RStudio, and Galaxy." ,
914- icon : < Icon alt = "Terra" src = "/export/terra.webp" width = { 24 } /> ,
914+ icon : < ExportIcon alt = "Terra" src = "/export/terra.webp" width = { 24 } /> ,
915915 route : ROUTES . TERRA ,
916916 title : "Export to Terra" ,
917917 } ;
@@ -962,7 +962,7 @@ export const buildExportMethodBulkDownload = (
962962 files in the current selection.
963963 </ div >
964964 ) ,
965- icon : < Icon alt = "curl" src = "/export/curl.webp" width = { 24 } /> ,
965+ icon : < ExportIcon alt = "curl" src = "/export/curl.webp" width = { 24 } /> ,
966966 route : ROUTES . CURL_DOWNLOAD ,
967967 title : "Download Open-Access Data Files (No Data Transfer Fees)" ,
968968 } ;
0 commit comments