import React from "react"; import { ColorPicker } from "../ColorPicker"; interface PanelColorProps { title: string; colorType: "canvasBackground" | "elementBackground" | "elementStroke"; colorValue: string | null; onColorChange: (value: string) => void; } export const PanelColor: React.FC = ({ title, colorType, onColorChange, colorValue }) => { return ( <>
{title}
onColorChange(color)} /> ); };