import React from 'react'; import PropTypes from 'prop-types'; import { CircleIconButton, MaterialIcon } from '../_shared/'; export function OtherMediaDownloadLink(props) { return (
DOWNLOAD
); } OtherMediaDownloadLink.propTypes = { link: PropTypes.string.isRequired, title: PropTypes.string.isRequired, };