diff --git a/src/actions/actionCanvas.tsx b/src/actions/actionCanvas.tsx index 6ed15b71..a2d04d77 100644 --- a/src/actions/actionCanvas.tsx +++ b/src/actions/actionCanvas.tsx @@ -2,43 +2,46 @@ import React from "react"; import { Action } from "./types"; import { ColorPicker } from "../components/ColorPicker"; import { getDefaultAppState } from "../appState"; +import { trash } from "../components/icons"; +import { ToolIcon } from "../components/ToolIcon"; export const actionChangeViewBackgroundColor: Action = { name: "changeViewBackgroundColor", perform: (elements, appState, value) => { return { appState: { ...appState, viewBackgroundColor: value } }; }, - PanelComponent: ({ appState, updateData }) => ( - <> -