import PropTypes from 'prop-types'; import React from 'react'; const SidebarTriggerBase = ({ onClick, ariaLabel, children, }) => ( ); SidebarTriggerBase.propTypes = { onClick: PropTypes.func.isRequired, ariaLabel: PropTypes.string.isRequired, children: PropTypes.element.isRequired, }; export default SidebarTriggerBase;