import React from 'react'; import PropTypes from 'prop-types'; import { noop, Grid, Button, Icon } from 'patternfly-react'; import './fileDownload.scss'; const FileDownload = ({ onClick }) => ( ); FileDownload.propTypes = { onClick: PropTypes.func, }; FileDownload.defaultProps = { onClick: noop, }; export default FileDownload;