"use client"; import { HexColorInput, HexColorPicker } from "react-colorful"; import { DropdownMenu } from "../../components/Dropdown/DropdownMenu.js"; import { Dropdown } from "../../components/Dropdown/index.js"; type Props = { value: string; onChange: (newValue: string) => void; }; export function StyledColorInput({ value, onChange }: Props) { return ( (
)} >
); }