@remittancev2/vite-package
Version:
Reusable UI library for remittance platform
24 lines (23 loc) • 814 B
TypeScript
import { default as React, CSSProperties, PropsWithChildren } from 'react';
export type SocialLoginButtonProps = PropsWithChildren<{
activeStyle?: CSSProperties;
align?: "left" | "right" | "center";
className?: string;
icon?: string | React.ComponentType<{
size: string | number;
color: string;
}>;
iconFormat?: (name: string) => string;
iconSize?: string | number;
iconColor?: string;
onClick?: VoidFunction;
onMouseEnter?: VoidFunction;
onMouseLeave?: VoidFunction;
preventActiveStyles?: boolean;
size?: string;
style?: CSSProperties;
text?: string;
disabled?: boolean;
type?: "button" | "submit" | "reset";
}>;
export declare const SocialLoginButton: (props: SocialLoginButtonProps) => import("react/jsx-runtime").JSX.Element;