import { h } from 'preact'; import PropTypes from 'prop-types'; import { Button } from '@crayons/Button/Button'; export const ClearQueryButton = ({ onClick }) => ( ); ClearQueryButton.propTypes = { onClick: PropTypes.func.isRequired, };