mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-26 09:29:10 +00:00
reusable buttons
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import { IconButton } from '@chakra-ui/button';
|
||||
import { FiSkipForward } from 'react-icons/fi';
|
||||
|
||||
export default function NextIconBtn(props) {
|
||||
return (
|
||||
<IconButton
|
||||
icon={<FiSkipForward />}
|
||||
colorScheme= 'blackAlpha'
|
||||
variant= 'outline'
|
||||
onClick={props.clickHandler}
|
||||
width={90}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user