import React from 'react' import PropTypes from 'prop-types' import classnames from 'classnames' export default class InputButton extends React.Component { static propTypes = { "data-wd-key": PropTypes.string, "aria-label": PropTypes.string, onClick: PropTypes.func, style: PropTypes.object, className: PropTypes.string, children: PropTypes.node, disabled: PropTypes.bool, type: PropTypes.string, id: PropTypes.string, title: PropTypes.string, } render() { return } }