import { Hand } from "@phosphor-icons/react"; import { BottomControlDivider } from "./Divider"; import { bottomControlIconSlotClass, bottomControlLabelClass, bottomControlMenuClass, bottomControlValueClass } from "./styles"; export type PanControlsProps = { x: number; y: number; }; export function PanControls({ x, y }: PanControlsProps) { return (
X {x} Y {y}
); }