diff --git a/modules/room/components/toolbar/Eraser.tsx b/modules/room/components/toolbar/Eraser.tsx new file mode 100644 index 0000000..59c8139 --- /dev/null +++ b/modules/room/components/toolbar/Eraser.tsx @@ -0,0 +1,20 @@ +import { useOptions, useSetOptions } from "@/common/recoil/options"; +import {FaEraser} from "react-icons/fa"; + +const Eraser = () => { + //may cause error + const options = useOptions(); + const setOptions = useSetOptions(); + return ( + + ); +}; + +export default Eraser; \ No newline at end of file