2021-08-11 15:34:10 -05:00
|
|
|
import Countdown from 'react-countdown'
|
|
|
|
|
|
|
|
export default function SimpleCountdown ({ className, onComplete, date }) {
|
|
|
|
return (
|
2021-09-23 15:09:07 -05:00
|
|
|
<span className={className}>
|
2021-08-11 15:34:10 -05:00
|
|
|
<Countdown
|
|
|
|
date={date}
|
2023-07-06 12:43:51 -05:00
|
|
|
renderer={props => <span className='text-monospace'> {props.formatted.minutes}:{props.formatted.seconds}</span>}
|
2021-08-11 15:34:10 -05:00
|
|
|
onComplete={onComplete}
|
|
|
|
/>
|
|
|
|
</span>
|
|
|
|
)
|
|
|
|
}
|