"use client"; import type { ButtonBlockProps } from "@/features/editor/state/editorStore"; import { NumericPropertyControl } from "@/features/editor/components/NumericPropertyControl"; import { ColorPickerField, TEXT_COLOR_PALETTE } from "@/features/editor/components/ColorPickerField"; export type ButtonPropertiesPanelProps = { buttonProps: ButtonBlockProps; selectedBlockId: string; updateBlock: (id: string, partial: Partial) => void; }; export function ButtonPropertiesPanel({ buttonProps, selectedBlockId, updateBlock }: ButtonPropertiesPanelProps) { return ( <>