gather-content-ui
Version:
GatherContent UI Library
10 lines • 558 B
TypeScript
import React, { ButtonHTMLAttributes } from "react";
interface Props extends ButtonHTMLAttributes<HTMLButtonElement> {
types?: string[];
disableOnClick?: boolean;
isSubmit?: boolean;
clickHandler?: (e: React.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
}
export declare function Button({ disableOnClick, isSubmit, onClick, onKeyDown, className, clickHandler, children, id, title, onMouseEnter, onMouseLeave, types, disabled, }: Props): import("react/jsx-runtime").JSX.Element;
export default Button;
//# sourceMappingURL=index.d.ts.map