import "./ToolIcon.scss"; import clsx from "clsx"; import type { ToolButtonSize } from "./ToolButton"; import { laserPointerToolIcon } from "./icons"; type LaserPointerIconProps = { title?: string; name?: string; checked: boolean; onChange?(): void; isMobile?: boolean; }; const DEFAULT_SIZE: ToolButtonSize = "small"; export const LaserPointerButton = (props: LaserPointerIconProps) => { return ( ); };