import classNames from 'classnames'; import PropTypes from 'prop-types'; export default function PanelButtonComponent(props) { const { className, children, ...rest } = props; const cn = classNames(className, 'scratchpad__panel-button'); return ( ); } PanelButtonComponent.propTypes = { className: PropTypes.string, children: PropTypes.node, };