mistui-kit
Version:
**👉 [Try MistUi Live](https://gilded-tanuki-0eb52b.netlify.app/) — interactive playground & docs**
15 lines (14 loc) • 483 B
TypeScript
import { Button } from '../buttons';
export type TypeOauth = 'google' | 'facebook' | 'github' | 'telegram';
export type SchemaOauth = {
type: TypeOauth;
label?: string;
button?: typeof Button;
};
type SocialAuthButtonsProps = {
scheme: SchemaOauth[];
loading?: boolean;
onClick: (type: TypeOauth) => void;
};
export default function SocialAuthButtons({ scheme, loading, onClick, }: SocialAuthButtonsProps): import("react/jsx-runtime").JSX.Element;
export {};