import { IconButton } from '@chakra-ui/button'; import { FiClock } from 'react-icons/fi'; export default function DelayIconBtn(props) { const { clickhandler, ...rest } = props; return ( } colorScheme='yellow' onClick={clickhandler} _focus={{ boxShadow: 'none' }} {...rest} /> ); }