/** 상태막대 — AutoCAD 하단 제도 보조 토글 */ import type { FC } from 'react'; import { getAngleStep, getGridEnabled, getSnapEnabled, getSnapTrackingEnabled, setAngleStep, setGridEnabled, setSnapEnabled, setSnapTrackingEnabled, } from '../state'; interface StatusBarProps { commandLineVisible: boolean; onToggleCommandLine: () => void; } export const StatusBar: FC = ({ commandLineVisible, onToggleCommandLine }) => { const snap = getSnapEnabled(); const grid = getGridEnabled(); const ortho = getAngleStep() === 90; const polar = getAngleStep() === 45; const snapTracking = getSnapTrackingEnabled(); return ( ); };