import React from "react"; import PropTypes from "prop-types"; export const Refresh = ({ onClick, loading, kind }) => { return ( ); }; Refresh.propTypes = { onClick: PropTypes.func.isRequired, loading: PropTypes.bool.isRequired, kind: PropTypes.string.isRequired, }; Refresh.defaultProps = { onClick: () => {}, loading: false, kind: "secondary", };