@atlaskit/inline-edit
Version:
An inline edit displays a custom input component that switches between reading and editing on the same page.
14 lines (13 loc) • 406 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
interface ButtonsProp {
confirmButtonLabel: string;
cancelButtonLabel: string;
onMouseDown: () => void;
onCancelClick: (event: React.MouseEvent<HTMLElement>) => void;
testId?: string;
}
declare const Buttons: ({ confirmButtonLabel, cancelButtonLabel, onMouseDown, onCancelClick, testId, }: ButtonsProp) => JSX.Element;
export default Buttons;