mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-18 13:44:12 +00:00
refract make reusable components
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { IconButton } from '@chakra-ui/button';
|
||||
import { FiPlus } from "react-icons/fi";
|
||||
|
||||
export default function AddIconBtn(props) {
|
||||
return (
|
||||
<IconButton
|
||||
size={props.size || 'xs'}
|
||||
icon={<FiPlus />}
|
||||
colorScheme='blue'
|
||||
onClick={() => props.clickHandler}
|
||||
/>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user