Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

DateTimeDisplay.jsx 393B

12345678910111213
  1. import React from 'react';
  2. import './timer.css';
  3. const DateTimeDisplay = ({ value, type, isDanger }) => {
  4. return (
  5. <div className={isDanger ? 'countdown danger' : 'countdown'}>
  6. <p className='md:text-head text-title-mobile font-semibold'>{value}</p>
  7. <span className='md:text-title text-p-mobile font-semibold'>{type}</span>
  8. </div>
  9. );
  10. };
  11. export default DateTimeDisplay;