import React, { type ButtonHTMLAttributes } from "react"; import { autoStableManduId } from "../runtime/stable-selector"; export interface ManduButtonProps extends ButtonHTMLAttributes { manduId?: string; } /** * Mandu standard interaction Button. * Core guarantees data-mandu-id injection (best-effort, stable rule). */ export function ManduButton({ manduId, ...props }: ManduButtonProps) { const id = manduId ?? autoStableManduId("ManduButton"); return