Repository URL to install this package:
|
Version:
0.0.5 ▾
|
/// <reference types="react" />
import { ButtonProps } from '../typings';
export declare type ContinueButtonProps = ButtonProps & {
onClick?: () => void;
text: string;
};
declare const ContinueButton: (props: ContinueButtonProps) => JSX.Element;
export { ContinueButton };
export default ContinueButton;