react-klasha
Version:
This is an reactJS library for implementing klasha payment gateway
11 lines (10 loc) • 389 B
TypeScript
import { ReactNode } from "react";
import { KlashaOptionsProps } from "./types";
interface KlashaButtonProps extends KlashaOptionsProps {
text?: string;
className?: string;
children?: ReactNode;
callBack?: Function;
}
declare const KlashaButton: ({ text, className, children, callBack, ...others }: KlashaButtonProps) => JSX.Element;
export default KlashaButton;