Werkzeuge: Kreis-Toolbar verdrahtet (circleCommand gekoppelt, Icon, i18n)

This commit is contained in:
2026-07-05 15:24:45 +02:00
parent 67195d7dd5
commit e454eab1a8
6 changed files with 31 additions and 1 deletions
+7
View File
@@ -111,6 +111,13 @@ function ToolIcon({ id }: { id: ToolId }) {
<rect x="2.5" y="3.5" width="11" height="9" />
</svg>
);
case "circle":
// Kreis-Umriss.
return (
<svg {...common}>
<circle cx="8" cy="8" r="5.5" />
</svg>
);
default:
return null;
}