refract make reusable components

This commit is contained in:
cv
2021-04-10 22:21:01 +02:00
parent e51f3e6cd5
commit 54d19d729b
15 changed files with 311 additions and 160 deletions
@@ -0,0 +1,13 @@
import { IconButton } from '@chakra-ui/button';
import { FiClock } from 'react-icons/fi';
export default function DelayIconBtn(props) {
return (
<IconButton
size={props.size || 'xs'}
icon={<FiClock />}
colorScheme='yellow'
onClick={() => props.clickHandler}
/>
);
}