mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
import React, { FC } from 'react';
|
||
|
||
import { Button } from '~/components/input/Button';
|
||
|
||
import styles from './styles.module.scss';
|
||
|
||
interface IProps {}
|
||
|
||
const LoginSocialRegisterButtons: FC<IProps> = () => (
|
||
<div className={styles.wrap}>
|
||
<Button color="secondary">Впустите меня!</Button>
|
||
</div>
|
||
);
|
||
|
||
export { LoginSocialRegisterButtons };
|