| 3 | import { CrosshairType } from './types' |
| 4 | |
| 5 | interface CrosshairProps { |
| 6 | width: number |
| 7 | height: number |
| 8 | type: CrosshairType |
| 9 | x: number |
| 10 | y: number |
| 11 | } |
| 12 | |
| 13 | export const Crosshair = memo(({ width, height, type, x, y }: CrosshairProps) => { |
| 14 | let xLine |
nothing calls this directly
no outgoing calls
no test coverage detected