import clsx from "clsx"; import { KEYS } from "@excalidraw/common"; import { ToolButton } from "./ToolButton"; import { handIcon } from "./icons"; import "./ToolIcon.scss"; type LockIconProps = { title?: string; name?: string; checked: boolean; onChange?(): void; isMobile?: boolean; }; export const HandButton = (props: LockIconProps) => { return ( props.onChange?.()} /> ); };