mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 20:03:52 +00:00
712df0b446
remove unused + small css tweaks
19 lines
438 B
React
19 lines
438 B
React
import { IconButton } from '@chakra-ui/button';
|
|
import { FiSettings } from 'react-icons/fi';
|
|
|
|
export default function SettingsIconBtn(props) {
|
|
const { clickhandler, ...rest } = props;
|
|
return (
|
|
<IconButton
|
|
size={props.size || 'xs'}
|
|
icon={<FiSettings />}
|
|
isRound
|
|
variant='outline'
|
|
onClick={clickhandler}
|
|
_focus={{ boxShadow: 'none' }}
|
|
colorScheme='whiteAlpha'
|
|
{...rest}
|
|
/>
|
|
);
|
|
}
|