feat: add extensible operators and golden flows

This commit is contained in:
2026-07-29 15:50:15 +02:00
parent 09c98087c5
commit 946202ef01
27 changed files with 3584 additions and 218 deletions
+14
View File
@@ -1,5 +1,7 @@
import {
ArrowUpDown,
BadgeCheck,
Boxes,
Braces,
Columns3,
Combine,
@@ -8,14 +10,21 @@ import {
GitMerge,
ListEnd,
ListFilter,
ListChecks,
PanelTopOpen,
Replace,
ReplaceAll,
ScanSearch,
Sigma,
SquareFunction,
Variable,
type LucideIcon
} from "lucide-react";
const icons: Record<string, LucideIcon> = {
"arrow-up-down": ArrowUpDown,
"badge-check": BadgeCheck,
boxes: Boxes,
braces: Braces,
"columns-3": Columns3,
combine: Combine,
@@ -24,8 +33,13 @@ const icons: Record<string, LucideIcon> = {
"git-merge": GitMerge,
"list-end": ListEnd,
"list-filter": ListFilter,
"list-checks": ListChecks,
"panel-top-open": PanelTopOpen,
replace: Replace,
"replace-all": ReplaceAll,
"scan-search": ScanSearch,
sigma: Sigma,
"function-square": SquareFunction,
variable: Variable
};