UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

7 lines (6 loc) 337 B
import React from 'react'; import { useTimer } from './hooks/useTimer'; export const CooldownTimer = ({ cooldownInterval }) => { const secondsLeft = useTimer({ startFrom: cooldownInterval }); return (React.createElement("div", { className: 'str-chat__message-input-cooldown', "data-testid": 'cooldown-timer' }, secondsLeft)); };