mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-13 03:13:47 +00:00
19 lines
445 B
React
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}
|
|
/>
|
|
);
|
|
}
|