Norbert de Langen 341fc2d90d
FIX linting
2020-03-27 20:04:50 +01:00

25 lines
593 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 };