2018-12-22 00:08:44 +01:00

25 lines
591 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import BaseButton from './BaseButton';
const NamedExportButton = props => <BaseButton {...props} />;
NamedExportButton.defaultProps = {
disabled: false,
onClick: () => {},
style: {},
};
NamedExportButton.propTypes = {
/** Boolean indicating whether the button should render as disabled */
disabled: PropTypes.bool,
/** button label. */
label: PropTypes.string.isRequired,
/** onClick handler */
onClick: PropTypes.func,
/** Custom styles */
style: PropTypes.shape({}),
};
export { NamedExportButton };