import React from 'react'; import Spinner from '@/components/elements/Spinner'; import { CSSTransition } from 'react-transition-group'; interface Props { visible: boolean; children?: React.ReactChild; } const ListRefreshIndicator = ({ visible, children }: Props) => (

{children || 'Refreshing listing...'}

); export default ListRefreshIndicator;