import { MdOutlineTimer } from 'react-icons/md/index'; import { Item } from '../item'; interface SleepTimerProps { open: () => void; } export function CountdownTimer({ open }: SleepTimerProps) { return ( } label="Countdown Timer" shortcut="Shift + T" onClick={open} /> ); }