import type { BlockAiFieldActionProps, BlockRenderContext } from "./types.js"; export function AiEditableFieldLabel({ htmlFor, label, ctx, action, }: { htmlFor: string; label: string; ctx: BlockRenderContext; action?: Omit; }) { return (
{action ? ctx.renderAiFieldAction?.({ ...action, fieldLabel: label, }) : null}
); }