import { Group, Arc, Line } from 'react-konva'; interface WallLightSymbolProps { readonly x: number; readonly y: number; readonly rotation: number; readonly color: string; readonly scale: number; } /** IEC wall light: half-circle against wall (flat side toward wall). */ export function WallLightSymbol({ x, y, rotation, color, scale }: WallLightSymbolProps) { const r = 10 * scale; return ( {/* Half circle — the flat side faces the wall */} {/* Flat baseline along wall */} ); }