@web3auth/ui
Version:
Ui modal for web3Auth
17 lines (16 loc) • 533 B
TypeScript
import "./styles.css";
import { CSSProperties, ReactNode } from "react";
type ButtonProps = {
variant: "primary" | "secondary" | "tertiary";
onClick?: () => void;
title?: string;
children?: ReactNode;
className?: string;
style?: CSSProperties;
size?: string;
disabled?: boolean;
type?: "button" | "submit";
};
declare function Button(props: ButtonProps): import("react/jsx-runtime").JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof Button>;
export default _default;