import React, { forwardRef } from 'react'; import PropTypes from 'prop-types'; import BaseButton from './BaseButton'; export const ForwardRefButtonInnerPropTypes = forwardRef(BaseButton); export const ForwardRefButtonOuterPropTypes = forwardRef(({ label, ...props }, ref) => ( )); ForwardRefButtonOuterPropTypes.defaultProps = { disabled: false, onClick: () => {}, style: {}, }; ForwardRefButtonOuterPropTypes.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({}), };