mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 01:43:43 +00:00
ea92fc7de7
- 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
15 lines
346 B
React
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' }}
|
|
/>
|
|
);
|
|
}
|