@finsel-dgi/flow-dialog
Version:
A reusable React component library for Pasby eID authentication flows with QR code scanning and signature verification
17 lines • 724 B
TypeScript
import * as React from "react";
export type ButtonVariant = "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | "custom";
export type ButtonSize = "default" | "sm" | "lg" | "xl" | "icon" | "custom";
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
variant?: ButtonVariant;
size?: ButtonSize;
children?: React.ReactNode;
className?: string;
disabled?: boolean;
color?: string;
fullWidth?: boolean;
loading?: boolean;
leftIcon?: React.ReactNode;
rightIcon?: React.ReactNode;
}
export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
//# sourceMappingURL=Button.d.ts.map