Files
ontime/client/src/common/components/buttons/NextIconBtn.jsx
T
2021-04-24 16:37:41 +02:00

19 lines
445 B
React

import { IconButton } from '@chakra-ui/button';
import { FiSkipForward } from 'react-icons/fi';
export default function NextIconBtn(props) {
const { clickhandler, ...rest } = props;
return (
<IconButton
icon={<FiSkipForward />}
colorScheme='whiteAlpha'
backgroundColor='#ffffff11'
variant='outline'
onClick={clickhandler}
width={90}
_focus={{ boxShadow: 'none' }}
{...rest}
/>
);
}