@passflow/passflow-react-sdk
Version:
Passflow React UI Kit
19 lines • 627 B
TypeScript
import { ButtonHTMLAttributes, FC, PropsWithChildren } from 'react';
type RippleProps = {
size: number;
x: number;
y: number;
};
export declare const Ripple: FC<RippleProps>;
type TButton = PropsWithChildren & ButtonHTMLAttributes<HTMLButtonElement> & {
size: 'small' | 'medium' | 'big';
variant: 'primary' | 'secondary' | 'outlined' | 'warning' | 'clean' | 'provider' | 'dark';
type: 'button' | 'submit' | 'reset';
withIcon?: boolean;
asIcon?: boolean;
className?: string;
withRipple?: boolean;
};
export declare const Button: FC<TButton>;
export {};
//# sourceMappingURL=index.d.ts.map