UNPKG

@passflow/passflow-react-sdk

Version:
19 lines 627 B
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