import clsx from "clsx"; import { ColorPickerType } from "./colorPickerUtils"; import { DEFAULT_CANVAS_BACKGROUND_PICKS, DEFAULT_ELEMENT_BACKGROUND_PICKS, DEFAULT_ELEMENT_STROKE_PICKS, } from "../../colors"; interface TopPicksProps { onChange: (color: string) => void; type: ColorPickerType; activeColor: string; topPicks?: readonly string[]; } export const TopPicks = ({ onChange, type, activeColor, topPicks, }: TopPicksProps) => { let colors; if (type === "elementStroke") { colors = DEFAULT_ELEMENT_STROKE_PICKS; } if (type === "elementBackground") { colors = DEFAULT_ELEMENT_BACKGROUND_PICKS; } if (type === "canvasBackground") { colors = DEFAULT_CANVAS_BACKGROUND_PICKS; } // this one can overwrite defaults if (topPicks) { colors = topPicks; } if (!colors) { console.error("Invalid type for TopPicks"); return null; } return (