@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
11 lines (10 loc) • 411 B
TypeScript
import React from 'react';
import type { SocialLoginOption } from '../../consts/funkit';
import { type BoxProps } from '../Box/Box';
interface Props {
options: SocialLoginOption[];
onSelect: (provider: SocialLoginOption['provider']) => void;
flexDirection?: BoxProps['flexDirection'];
}
export declare const FunSocials: ({ options, onSelect, flexDirection }: Props) => React.JSX.Element;
export {};