forked from Transparency/kgroad-frontend2
15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
import Image from "next/image";
|
||
import "./GoogleButton.scss";
|
||
import google from "./icons/google.svg";
|
||
|
||
const GoogleButton = () => {
|
||
return (
|
||
<button className="google-btn">
|
||
<Image src={google} alt="Google Icon" />
|
||
Войти через Google
|
||
</button>
|
||
);
|
||
};
|
||
|
||
export default GoogleButton;
|