UNPKG

@remittancev2/vite-package

Version:

Reusable UI library for remittance platform

15 lines (14 loc) 460 B
import { SocialLoginButtonProps } from './SocialLoginButton'; import { ComponentType } from 'react'; type Config = { activeStyle?: {}; icon?: string | ComponentType<{ size: string | number; color: string; }>; style?: {}; text?: string; type?: "button" | "submit" | "reset"; }; export declare const createButton: (config?: Config) => (props: SocialLoginButtonProps) => import("react/jsx-runtime").JSX.Element; export {};