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 = ({ openOauthWindow }) => ( ); export { LoginDialogButtons };