* Add palettes for each type of color picker. * Add white canvas background and black element stroke. * Add white for element background.
28 lines
568 B
TypeScript
28 lines
568 B
TypeScript
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<PanelColorProps> = ({
|
|
title,
|
|
colorType,
|
|
onColorChange,
|
|
colorValue
|
|
}) => {
|
|
return (
|
|
<>
|
|
<h5>{title}</h5>
|
|
<ColorPicker
|
|
type={colorType}
|
|
color={colorValue}
|
|
onChange={color => onColorChange(color)}
|
|
/>
|
|
</>
|
|
);
|
|
};
|