mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 11:53:49 +00:00
6ac963684d
* chore: upgrade minor versions * chore: upgrade cypress * chore: upgrade fe dependencies * update readme * update osx images * update readme * upgrade dependencies * upgrade test dependency * feat: add option to input autofill * feat: autofill to the left * chore: update docs * chore: cleanup ci * version bump * style: prevent zero height bar * fix: prevent loosing menu * ux: improve input, no spellcheck or autocomplete * small ux improvements in cuesheets * feat 111/increase maximum number of events * fix: optimistic delete issue with filter * refact: pincode workflow * chore: add versioning to packages
28 lines
737 B
React
28 lines
737 B
React
import React from 'react';
|
|
import { IconButton } from '@chakra-ui/button';
|
|
import { IoStop } from '@react-icons/all-files/io5/IoStop';
|
|
import { Tooltip } from '@chakra-ui/tooltip';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export default function UnloadIconBtn(props) {
|
|
const { clickHandler, disabled, ...rest } = props;
|
|
return (
|
|
<Tooltip label='Unload event' openDelay={500} shouldWrapChildren={disabled}>
|
|
<IconButton
|
|
icon={<IoStop size='22px' />}
|
|
colorScheme='red'
|
|
variant='outline'
|
|
onClick={clickHandler}
|
|
width={90}
|
|
disabled={disabled}
|
|
{...rest}
|
|
/>
|
|
</Tooltip>
|
|
);
|
|
}
|
|
|
|
UnloadIconBtn.propTypes = {
|
|
clickHandler: PropTypes.func,
|
|
disabled: PropTypes.bool,
|
|
};
|