// apps/web/src/components/editor/editor-status-bar.tsx import { useEditorStore } from "@/stores/editor-store"; export function EditorStatusBar() { const cursorPosition = useEditorStore((s) => s.cursorPosition); const canvasSize = useEditorStore((s) => s.canvasSize); const zoom = useEditorStore((s) => s.zoom); const setZoom = useEditorStore((s) => s.setZoom); const sourceImageUrl = useEditorStore((s) => s.sourceImageUrl); const zoomPercent = Math.round(zoom * 100); return (