import React from 'react'; import { defineMessages, injectIntl, intlShape } from 'react-intl'; import Button from '/imports/ui/components/button/component'; import cx from 'classnames'; import PropTypes from 'prop-types'; import { styles } from './styles'; const intlMessages = defineMessages({ downloadPresentationButton: { id: 'app.downloadPresentationButton.label', description: 'Download presentation label', }, }); const propTypes = { intl: intlShape.isRequired, handleDownloadPresentation: PropTypes.func.isRequired, dark: PropTypes.bool, }; const defaultProps = { dark: false, }; const DownloadPresentationButton = ({ intl, handleDownloadPresentation, dark, }) => (