Files
ontime/client/src/common/components/buttons/BlockIconBtn.jsx
T
cv ea92fc7de7 refractor + style tweaks
- bugfix on lower
- delay between 0-60 minutes
- action buttons in dropdown
- added button for toggling element visibility
- several css and code cleanups
- renamed settingsAPI
2021-04-24 10:32:19 +02:00

15 lines
346 B
React

import { IconButton } from '@chakra-ui/button';
import { FiMinusCircle } from 'react-icons/fi';
export default function BlockIconBtn(props) {
return (
<IconButton
size={props.size || 'xs'}
icon={<FiMinusCircle />}
colorScheme='purple'
onClick={props.clickHandler}
_focus={{ boxShadow: 'none' }}
/>
);
}