"use client"; import type { DividerBlockProps } from "@/features/editor/state/editorStore"; export type DividerPropertiesPanelProps = { dividerProps: DividerBlockProps; selectedBlockId: string; updateBlock: (id: string, partial: Partial) => void; }; export function DividerPropertiesPanel({ dividerProps, selectedBlockId, updateBlock }: DividerPropertiesPanelProps) { return ( <>
); }