import React from "react"
import PropTypes from "prop-types"
const RefreshIndicator = (props) => {
if (!props.refresh) {
return (
Refresh
);
} else {
return (
Refreshing
);
}
}
RefreshIndicator.propTypes = {
refresh: PropTypes.bool.isRequired,
};
export default RefreshIndicator;