react-multistep-forms
Version:
Flexible and customizable multi-step form context for React with native React Hook Form integration.
10 lines • 413 B
TypeScript
import React from "react";
export type ButtonProps = {
/** The content to be displayed inside the button. */
children: React.ReactNode;
/** Optional additional CSS classes for styling the button. */
className?: string;
/** Optional click event handler for the button. */
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
};
//# sourceMappingURL=StepControlButtonType.d.ts.map