1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import * as React from "react";
6 import { ListItemIcon, ListItemText, Button, ListItem } from "@material-ui/core";
7 import { DownloadIcon } from "../../../components/icon/icon";
9 export const DownloadAction = (props: { href?: string, download?: string, onClick?: () => void }) => {
10 const targetProps = props.download ? {} : { target: '_blank' };
11 const downloadProps = props.download ? { download: props.download } : {};
14 style={{ textDecoration: 'none' }}
16 onClick={props.onClick}