mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
41 lines
981 B
TypeScript
41 lines
981 B
TypeScript
import React, { FC } from 'react';
|
||
|
||
import { Grid } from '~/components/containers/Grid';
|
||
import { Group } from '~/components/containers/Group';
|
||
import { Button } from '~/components/input/Button';
|
||
import { OAuthProvider } from '~/types/auth';
|
||
|
||
import styles from './styles.module.scss';
|
||
|
||
|
||
interface IProps {
|
||
openOauthWindow: (provider: OAuthProvider) => void;
|
||
}
|
||
|
||
const LoginDialogButtons: FC<IProps> = ({ openOauthWindow }) => (
|
||
<Group className={styles.footer}>
|
||
<Button>Войти</Button>
|
||
|
||
<Grid columns="repeat(2, 1fr)">
|
||
<Button
|
||
color="outline"
|
||
iconLeft="google"
|
||
type="button"
|
||
onClick={() => openOauthWindow('google')}
|
||
>
|
||
<span>Google</span>
|
||
</Button>
|
||
|
||
<Button
|
||
color="outline"
|
||
iconLeft="vk"
|
||
type="button"
|
||
onClick={() => openOauthWindow('vkontakte')}
|
||
>
|
||
<span>Вконтакте</span>
|
||
</Button>
|
||
</Grid>
|
||
</Group>
|
||
);
|
||
|
||
export { LoginDialogButtons };
|