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